diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:52:55 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:52:55 +0000 |
commit | 5f5ee2367157176ed223b86343eb0a9e4022e020 (patch) | |
tree | 6a9c87f14ee38e90eff3c77c784f14e4f38fd5a1 /kwallet/kwmapeditor.h | |
parent | 4facf42feec57b22dcf46badc115ad6c5b5cc512 (diff) | |
download | tdeutils-5f5ee2367157176ed223b86343eb0a9e4022e020.tar.gz tdeutils-5f5ee2367157176ed223b86343eb0a9e4022e020.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeutils@1157653 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kwallet/kwmapeditor.h')
-rw-r--r-- | kwallet/kwmapeditor.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kwallet/kwmapeditor.h b/kwallet/kwmapeditor.h index 8322a91..abd835f 100644 --- a/kwallet/kwmapeditor.h +++ b/kwallet/kwmapeditor.h @@ -20,25 +20,25 @@ #ifndef KWMAPEDITOR_H #define KWMAPEDITOR_H -#include <qmap.h> -#include <qstring.h> -#include <qtable.h> +#include <tqmap.h> +#include <tqstring.h> +#include <tqtable.h> class KAction; class KActionCollection; -class KWMapEditor : public QTable { +class KWMapEditor : public TQTable { Q_OBJECT public: - KWMapEditor(QMap<QString,QString>& map, QWidget *parent = 0, const char *name = 0); + KWMapEditor(TQMap<TQString,TQString>& map, TQWidget *parent = 0, const char *name = 0); virtual ~KWMapEditor(); public slots: void reload(); void saveMap(); void erase(); - void contextMenu(int row, int col, const QPoint& pos); + void contextMenu(int row, int col, const TQPoint& pos); void addEntry(); void emitDirty(); @@ -46,13 +46,13 @@ class KWMapEditor : public QTable { void copy(); protected: - virtual QWidget *beginEdit(int row, int col, bool replace); + virtual TQWidget *beginEdit(int row, int col, bool replace); signals: void dirty(); private: - QMap<QString,QString>& _map; + TQMap<TQString,TQString>& _map; int _contextRow, _contextCol; KActionCollection *_ac; KAction *_copyAct; |