From kde-commits Tue Jun 30 23:41:10 2009 From: Pino Toscano Date: Tue, 30 Jun 2009 23:41:10 +0000 To: kde-commits Subject: KDE/kdebase/apps/konqueror/settings/konqhtml Message-Id: <1246405270.291440.1042.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=124653891819676 SVN commit 989785 by pino: switch from QLineEdit to KLineEdit to get KDE behaviour BUG: 148159 M +2 -2 filteropts.cpp --- trunk/KDE/kdebase/apps/konqueror/settings/konqhtml/filteropts.cpp #989784:989785 @@ -26,7 +26,6 @@ #include #include #include -#include #include #include @@ -41,6 +40,7 @@ #include #include #include +#include K_PLUGIN_FACTORY_DECLARATION(KcmKonqHtmlFactory) @@ -76,7 +76,7 @@ vbox->addWidget(mListBox); vbox->addWidget(new QLabel( i18n("Expression (e.g. http://www.example.com/ad/*):"))); - mString = new QLineEdit; + mString = new KLineEdit; vbox->addWidget(mString); KHBox *buttonBox = new KHBox;