diff options
Diffstat (limited to 'kdnssd/kdedmodule/dnssdwatcher.h')
-rw-r--r-- | kdnssd/kdedmodule/dnssdwatcher.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kdnssd/kdedmodule/dnssdwatcher.h b/kdnssd/kdedmodule/dnssdwatcher.h index eb2d7092..2baea9fe 100644 --- a/kdnssd/kdedmodule/dnssdwatcher.h +++ b/kdnssd/kdedmodule/dnssdwatcher.h @@ -19,10 +19,10 @@ #ifndef _DNSSDWATCHER_H_ #define _DNSSDWATCHER_H_ -#include <qdict.h> +#include <tqdict.h> #include <kdedmodule.h> -#include <qstring.h> -#include <qstringlist.h> +#include <tqstring.h> +#include <tqstringlist.h> #include <kurl.h> class Watcher; @@ -31,18 +31,18 @@ class DNSSDWatcher : public KDEDModule Q_OBJECT K_DCOP public: - DNSSDWatcher(const QCString& obj); + DNSSDWatcher(const TQCString& obj); k_dcop: - QStringList watchedDirectories(); + TQStringList watchedDirectories(); void enteredDirectory(const KURL& dir); void leftDirectory(const KURL& dir); private: - QDict<Watcher> watchers; + TQDict<Watcher> watchers; void createNotifier(const KURL& url); - void dissect(const KURL& url,QString& name,QString& type,QString& domain); + void dissect(const KURL& url,TQString& name,TQString& type,TQString& domain); }; |