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 /kdelirc/kcmlirc/kcmlirc.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 'kdelirc/kcmlirc/kcmlirc.h')
-rw-r--r-- | kdelirc/kcmlirc/kcmlirc.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/kdelirc/kcmlirc/kcmlirc.h b/kdelirc/kcmlirc/kcmlirc.h index ba88ae2..517004f 100644 --- a/kdelirc/kcmlirc/kcmlirc.h +++ b/kdelirc/kcmlirc/kcmlirc.h @@ -11,8 +11,8 @@ #ifndef _KCMLIRC_H_ #define _KCMLIRC_H_ -#include <qstringlist.h> -#include <qmap.h> +#include <tqstringlist.h> +#include <tqmap.h> #include <kcmodule.h> @@ -37,16 +37,16 @@ private: KCMLircBase *theKCMLircBase; IRActions allActions; Modes allModes; - QMap<QListViewItem *, IRAIt > actionMap; - QMap<QListViewItem *, Mode> modeMap; - QMap<QListViewItem *, QString> profileMap, remoteMap; + TQMap<TQListViewItem *, IRAIt > actionMap; + TQMap<TQListViewItem *, Mode> modeMap; + TQMap<TQListViewItem *, TQString> profileMap, remoteMap; - void autoPopulate(const Profile &profile, const Remote &remote, const QString &mode); + void autoPopulate(const Profile &profile, const Remote &remote, const TQString &mode); public slots: void updateActions(); - void updateModesStatus(QListViewItem *); - void updateActionsStatus(QListViewItem *); + void updateModesStatus(TQListViewItem *); + void updateActionsStatus(TQListViewItem *); void updateModes(); void updateExtensions(); void updateInformation(); @@ -57,8 +57,8 @@ public slots: void slotAddActions(); void slotEditAction(); void slotRemoveAction(); - void slotDrop(KListView *, QDropEvent *, QListViewItem *, QListViewItem *after); - void slotRenamed(QListViewItem *item); + void slotDrop(KListView *, TQDropEvent *, TQListViewItem *, TQListViewItem *after); + void slotRenamed(TQListViewItem *item); void slotEditMode(); @@ -66,9 +66,9 @@ public slots: k_dcop: // MOC_SKIP_END // now just used as a proxy to AddAction class - virtual void gotButton(QString remote, QString button); + virtual void gotButton(TQString remote, TQString button); signals: - void haveButton(const QString &remote, const QString &button); + void haveButton(const TQString &remote, const TQString &button); public: virtual void load(); @@ -76,7 +76,7 @@ public: virtual void defaults(); virtual void configChanged(); - KCMLirc(QWidget *parent = 0, const char *name = 0, QStringList args = QStringList()); + KCMLirc(TQWidget *parent = 0, const char *name = 0, TQStringList args = TQStringList()); ~KCMLirc(); }; |