diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-30 20:09:36 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-30 20:09:36 +0000 |
commit | c54c3c07f612a7e039b015e8a2c4d8ec9ca5e9ff (patch) | |
tree | 9252de70e029efb2850bd6ac7508e058651d07eb /src/otrpreferences.h | |
parent | c99e1ecc99f459c847136f51b98d905fcb11dd26 (diff) | |
download | kopete-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/otrpreferences.h')
-rw-r--r-- | src/otrpreferences.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/otrpreferences.h b/src/otrpreferences.h index 0de6d5d..6848e89 100644 --- a/src/otrpreferences.h +++ b/src/otrpreferences.h @@ -31,15 +31,16 @@ class OTRPreferences : public KCModule { Q_OBJECT + TQ_OBJECT public: - OTRPreferences(QWidget *parent = 0, const char *name = 0, const QStringList &args = QStringList()); + OTRPreferences(TQWidget *tqparent = 0, const char *name = 0, const TQStringList &args = TQStringList()); ~OTRPreferences(); private: OTRPrefsUI *preferencesDialog; OtrlConfInterface *otrlConfInterface; - QMap<int, int> privKeys; + TQMap<int, int> privKeys; private slots: // Public slots void generateFingerprint(); @@ -52,10 +53,10 @@ private slots: // Public slots }; -class QAlignTableItem : public QTableItem { +class TQAlignTableItem : public TQTableItem { public : - QAlignTableItem(QTable *table, EditType editType, const QString& text, int alignment); + TQAlignTableItem(TQTable *table, EditType editType, const TQString& text, int tqalignment); private : int align; |