diff options
Diffstat (limited to 'noatun/modules/infrared/irprefs.h')
-rw-r--r-- | noatun/modules/infrared/irprefs.h | 14 |
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 |