summaryrefslogtreecommitdiffstats
path: root/KMFIPTInterface/kmfiptinterface.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-27 17:52:36 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-27 17:52:36 +0000
commitff419492931de3748936967da36948af7a04d7a0 (patch)
tree31a70be62d3bfb8e405d51e4b256a7210940ffe8 /KMFIPTInterface/kmfiptinterface.h
parentf1fd95abe28acef708caac65af44473461d7026c (diff)
downloadkmyfirewall-ff419492931de3748936967da36948af7a04d7a0.tar.gz
kmyfirewall-ff419492931de3748936967da36948af7a04d7a0.zip
TQt4 convert kmyfirewall
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kmyfirewall@1238525 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'KMFIPTInterface/kmfiptinterface.h')
-rw-r--r--KMFIPTInterface/kmfiptinterface.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/KMFIPTInterface/kmfiptinterface.h b/KMFIPTInterface/kmfiptinterface.h
index 512f73b..4f694af 100644
--- a/KMFIPTInterface/kmfiptinterface.h
+++ b/KMFIPTInterface/kmfiptinterface.h
@@ -22,8 +22,8 @@
#ifndef _kmfiptinterface_H
#define _kmfiptinterface_H
-#include <qstringlist.h>
-#include <qstring.h>
+#include <tqstringlist.h>
+#include <tqstring.h>
#include <dcopobject.h>
class KMFIPTInterface : public DCOPObject
@@ -31,7 +31,7 @@ class KMFIPTInterface : public DCOPObject
K_DCOP
private:
- QStringList m_List;
+ TQStringList m_List;
public:
KMFIPTInterface();
@@ -39,19 +39,19 @@ class KMFIPTInterface : public DCOPObject
~KMFIPTInterface();
k_dcop:
- QString string(int);
- QStringList list();
+ TQString string(int);
+ TQStringList list();
- void add(QString);
- bool remove(QString);
+ void add(TQString);
+ bool remove(TQString);
bool exit();
void Test();
- int numRulesInChain( QString, QString );
- int numChainsInTable( QString );
- QStringList getChainsInTable( QString );
- QStringList getRuleProperties( QString, QString, int );
+ int numRulesInChain( TQString, TQString );
+ int numChainsInTable( TQString );
+ TQStringList getChainsInTable( TQString );
+ TQStringList getRuleProperties( TQString, TQString, int );
- QString getChainPolicy( QString, QString );
+ TQString getChainPolicy( TQString, TQString );
};
#endif