diff options
Diffstat (limited to 'KMFSysTray/kmfiptwatcher.h')
-rw-r--r-- | KMFSysTray/kmfiptwatcher.h | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/KMFSysTray/kmfiptwatcher.h b/KMFSysTray/kmfiptwatcher.h index c6c27f8..68ecf3c 100644 --- a/KMFSysTray/kmfiptwatcher.h +++ b/KMFSysTray/kmfiptwatcher.h @@ -20,24 +20,25 @@ #ifndef KMFIPTWATCHER_H #define KMFIPTWATCHER_H -#include <qobject.h> +#include <tqobject.h> /** @author Christian Hubinger */ -class QTimer; +class TQTimer; class KMFIPTDoc; class IPTChain; class IPTable; class IPTRule; class IPTRuleOption; -class KMFIPTWatcher : public QObject +class KMFIPTWatcher : public TQObject { Q_OBJECT + TQ_OBJECT public: - KMFIPTWatcher(QObject *parent = 0, const char *name = 0); + KMFIPTWatcher(TQObject *tqparent = 0, const char *name = 0); ~KMFIPTWatcher(); @@ -52,10 +53,10 @@ private slots: private: void go(); void queryExtendedInfo(); - void queryNumRulesInChain( const QString& /*table*/, const QString& /*Chain*/, KMFIPTDoc* /* doc */ ); - void queryChainsInTable( const QString& /*table*/, KMFIPTDoc* /* doc */ ); + void queryNumRulesInChain( const TQString& /*table*/, const TQString& /*Chain*/, KMFIPTDoc* /* doc */ ); + void queryChainsInTable( const TQString& /*table*/, KMFIPTDoc* /* doc */ ); - QTimer *m_timer; + TQTimer *m_timer; bool m_queryExtendedInfo; void fetchChainPolicy( IPTChain* ); @@ -66,7 +67,7 @@ private: signals: void sigUpdateIPTDoc( KMFIPTDoc* ); void sigUpdateActive( bool ); - void sigUpdateRuleCount( const QString& /*table*/, const QString& /*Chain*/, int ); + void sigUpdateRuleCount( const TQString& /*table*/, const TQString& /*Chain*/, int ); }; |