summaryrefslogtreecommitdiffstats
path: root/noatun/modules/infrared/irprefs.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:43:15 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:43:15 +0000
commite654398e46e37abf457b2b1122ab898d2c51c49f (patch)
treed39ee6440f3c3663c3ead84a2d4cc2d034667e96 /noatun/modules/infrared/irprefs.h
parente4f29b18e19394b9352f52a6c0d0d0e3932cf511 (diff)
downloadtdemultimedia-e654398e46e37abf457b2b1122ab898d2c51c49f.tar.gz
tdemultimedia-e654398e46e37abf457b2b1122ab898d2c51c49f.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdemultimedia@1157644 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'noatun/modules/infrared/irprefs.h')
-rw-r--r--noatun/modules/infrared/irprefs.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/noatun/modules/infrared/irprefs.h b/noatun/modules/infrared/irprefs.h
index 7f813ac8..1d7196a9 100644
--- a/noatun/modules/infrared/irprefs.h
+++ b/noatun/modules/infrared/irprefs.h
@@ -2,7 +2,7 @@
#ifndef _IRPREFS_H_
#define _IRPREFS_H_
-#include <qmap.h>
+#include <tqmap.h>
#include <noatun/pref.h>
class QCheckBox;
@@ -24,19 +24,19 @@ public:
NextSection, PreviousSection
};
- IRPrefs(QObject *parent);
+ IRPrefs(TQObject *parent);
virtual void save();
- static const QString actionName(Action);
- static Action actionFor(const QString &, const QString &, int);
+ static const TQString actionName(Action);
+ static Action actionFor(const TQString &, const TQString &, int);
public slots:
static Lirc *s_lirc;
private slots:
virtual void reopen();
- void slotCommandSelected(QListViewItem *);
+ void slotCommandSelected(TQListViewItem *);
void slotActionActivated(int);
void slotRepeatToggled(bool);
void slotIntervalChanged(int);
@@ -46,7 +46,7 @@ private:
KListView *m_commands;
KComboBox *m_action;
- QCheckBox *m_repeat;
+ TQCheckBox *m_repeat;
KIntSpinBox *m_interval;
struct Command
@@ -55,7 +55,7 @@ private:
int interval;
};
static bool s_configRead;
- static QMap<QString, Command> s_commands;
+ static TQMap<TQString, Command> s_commands;
};
#endif