diff options
Diffstat (limited to 'noatun/modules/infrared/infrared.cpp')
-rw-r--r-- | noatun/modules/infrared/infrared.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/noatun/modules/infrared/infrared.cpp b/noatun/modules/infrared/infrared.cpp index 60ea145c..c9b31230 100644 --- a/noatun/modules/infrared/infrared.cpp +++ b/noatun/modules/infrared/infrared.cpp @@ -6,7 +6,7 @@ #include <noatun/app.h> #include <klocale.h> -#include <qtimer.h> +#include <tqtimer.h> #include "infrared.h" #include "lirc.h" @@ -22,18 +22,18 @@ extern "C" InfraRed::InfraRed() - : QObject(), + : TQObject(), Plugin() { NOATUNPLUGINC(InfraRed); m_lirc = new Lirc(this); connect(m_lirc, - SIGNAL(commandReceived(const QString &, const QString &, int)), - SLOT(slotCommand(const QString &, const QString &, int))); + TQT_SIGNAL(commandReceived(const TQString &, const TQString &, int)), + TQT_SLOT(slotCommand(const TQString &, const TQString &, int))); IRPrefs::s_lirc = m_lirc; volume=0; - QTimer::singleShot(0, this, SLOT(start())); + TQTimer::singleShot(0, this, TQT_SLOT(start())); } InfraRed::~InfraRed() @@ -45,7 +45,7 @@ void InfraRed::start() new IRPrefs(this); } -void InfraRed::slotCommand(const QString &remote, const QString &button, int repeat) +void InfraRed::slotCommand(const TQString &remote, const TQString &button, int repeat) { switch (IRPrefs::actionFor(remote, button, repeat)) { |