summaryrefslogtreecommitdiffstats
path: root/src/otrlconfinterface.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-30 20:09:36 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-30 20:09:36 +0000
commitc54c3c07f612a7e039b015e8a2c4d8ec9ca5e9ff (patch)
tree9252de70e029efb2850bd6ac7508e058651d07eb /src/otrlconfinterface.h
parentc99e1ecc99f459c847136f51b98d905fcb11dd26 (diff)
downloadkopete-otr-c54c3c07f612a7e039b015e8a2c4d8ec9ca5e9ff.tar.gz
kopete-otr-c54c3c07f612a7e039b015e8a2c4d8ec9ca5e9ff.zip
TQt4 port kopete-otr
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kopete-otr@1238882 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/otrlconfinterface.h')
-rw-r--r--src/otrlconfinterface.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/src/otrlconfinterface.h b/src/otrlconfinterface.h
index bb89b3c..5cfe244 100644
--- a/src/otrlconfinterface.h
+++ b/src/otrlconfinterface.h
@@ -25,10 +25,10 @@
* @author Michael Zanetti
*/
-#include <qstring.h>
-#include <qptrlist.h>
-#include <qvaluelist.h>
-#include <qthread.h>
+#include <tqstring.h>
+#include <tqptrlist.h>
+#include <tqvaluelist.h>
+#include <tqthread.h>
#include <kopetechatsession.h>
@@ -45,22 +45,22 @@ class OtrlConfInterface
public:
~OtrlConfInterface();
- OtrlConfInterface( QWidget *preferencesDialog );
+ OtrlConfInterface( TQWidget *preferencesDialog );
- QString getPrivFingerprint( QString accountId, QString protocol );
- void generateNewPrivKey( QString accountId, QString protocol );
- QValueList<QString[5]> readAllFingerprints();
- bool hasPrivFingerprint( QString accountId, QString protocol);
- void forgetFingerprint( QString strFingerprint );
- void verifyFingerprint( QString strFingerprint, bool trust );
- bool isVerified( QString strFingerprint );
- bool isEncrypted( QString strFingerprint );
+ TQString getPrivFingerprint( TQString accountId, TQString protocol );
+ void generateNewPrivKey( TQString accountId, TQString protocol );
+ TQValueList<TQString[5]> readAllFingerprints();
+ bool hasPrivFingerprint( TQString accountId, TQString protocol);
+ void forgetFingerprint( TQString strFingerprint );
+ void verifyFingerprint( TQString strFingerprint, bool trust );
+ bool isVerified( TQString strFingerprint );
+ bool isEncrypted( TQString strFingerprint );
private:
OtrlUserState userstate;
- QWidget *preferencesDialog;
+ TQWidget *preferencesDialog;
- Fingerprint *findFingerprint( QString strFingerprint );
+ Fingerprint *findFingerprint( TQString strFingerprint );
};
#endif