diff options
Diffstat (limited to 'kcontrol/ebrowsing/plugins/localdomain')
-rw-r--r-- | kcontrol/ebrowsing/plugins/localdomain/localdomainurifilter.cpp | 8 | ||||
-rw-r--r-- | kcontrol/ebrowsing/plugins/localdomain/localdomainurifilter.h | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/kcontrol/ebrowsing/plugins/localdomain/localdomainurifilter.cpp b/kcontrol/ebrowsing/plugins/localdomain/localdomainurifilter.cpp index c2e3af8fa..01e9b93b5 100644 --- a/kcontrol/ebrowsing/plugins/localdomain/localdomainurifilter.cpp +++ b/kcontrol/ebrowsing/plugins/localdomain/localdomainurifilter.cpp @@ -22,8 +22,8 @@ #include "localdomainurifilter.h" -#include <kprocess.h> -#include <kstandarddirs.h> +#include <tdeprocess.h> +#include <tdestandarddirs.h> #include <kdebug.h> #include <tqregexp.h> @@ -84,8 +84,8 @@ bool LocalDomainURIFilter::isLocalDomainHost( TQString& cmd ) const TDEProcess proc; proc << helper << host; - connect( &proc, TQT_SIGNAL(receivedStdout(TDEProcess *, char *, int)), - TQT_SLOT(receiveOutput(TDEProcess *, char *, int)) ); + connect( &proc, TQ_SIGNAL(receivedStdout(TDEProcess *, char *, int)), + TQ_SLOT(receiveOutput(TDEProcess *, char *, int)) ); if( !proc.start( TDEProcess::NotifyOnExit, TDEProcess::Stdout )) return last_result = false; diff --git a/kcontrol/ebrowsing/plugins/localdomain/localdomainurifilter.h b/kcontrol/ebrowsing/plugins/localdomain/localdomainurifilter.h index 9d0c5f26d..04274f601 100644 --- a/kcontrol/ebrowsing/plugins/localdomain/localdomainurifilter.h +++ b/kcontrol/ebrowsing/plugins/localdomain/localdomainurifilter.h @@ -41,7 +41,7 @@ class TDEProcess; class LocalDomainURIFilter : public KURIFilterPlugin, public DCOPObject { K_DCOP - Q_OBJECT + TQ_OBJECT public: LocalDomainURIFilter( TQObject* parent, const char* name, const TQStringList& args ); |