diff options
Diffstat (limited to 'src/gui/application/LircCommander.cpp')
-rw-r--r-- | src/gui/application/LircCommander.cpp | 58 |
1 files changed, 29 insertions, 29 deletions
diff --git a/src/gui/application/LircCommander.cpp b/src/gui/application/LircCommander.cpp index 53562ca..e323539 100644 --- a/src/gui/application/LircCommander.cpp +++ b/src/gui/application/LircCommander.cpp @@ -36,44 +36,44 @@ #include "RosegardenGUIApp.h" #include "RosegardenGUIView.h" -#include <qobject.h> +#include <tqobject.h> namespace Rosegarden { LircCommander::LircCommander(LircClient *lirc, RosegardenGUIApp *rgGUIApp) - : QObject() + : TQObject() { m_lirc = lirc; m_rgGUIApp = rgGUIApp; - connect(m_lirc, SIGNAL(buttonPressed(char *)), - this, SLOT(slotExecute(char *)) ); - - connect(this, SIGNAL(play()), - m_rgGUIApp, SLOT(slotPlay()) ); - connect(this, SIGNAL(stop()), - m_rgGUIApp, SLOT(slotStop()) ); - connect(this, SIGNAL(record()), - m_rgGUIApp, SLOT(slotRecord()) ); - connect(this, SIGNAL(rewind()), - m_rgGUIApp, SLOT(slotRewind()) ); - connect(this, SIGNAL(rewindToBeginning()), - m_rgGUIApp, SLOT(slotRewindToBeginning()) ); - connect(this, SIGNAL(fastForward()), - m_rgGUIApp, SLOT(slotFastforward()) ); - connect(this, SIGNAL(fastForwardToEnd()), - m_rgGUIApp, SLOT(slotFastForwardToEnd()) ); - connect(this, SIGNAL(toggleRecord()), - m_rgGUIApp, SLOT(slotToggleRecord()) ); - connect(this, SIGNAL(trackDown()), - m_rgGUIApp, SLOT(slotTrackDown()) ); - connect(this, SIGNAL(trackUp()), - m_rgGUIApp, SLOT(slotTrackUp()) ); - connect(this, SIGNAL(trackMute()), - m_rgGUIApp, SLOT(slotToggleMutedCurrentTrack()) ); - connect(this, SIGNAL(trackRecord()), - m_rgGUIApp, SLOT(slotToggleRecordCurrentTrack()) ); + connect(m_lirc, TQT_SIGNAL(buttonPressed(char *)), + this, TQT_SLOT(slotExecute(char *)) ); + + connect(this, TQT_SIGNAL(play()), + m_rgGUIApp, TQT_SLOT(slotPlay()) ); + connect(this, TQT_SIGNAL(stop()), + m_rgGUIApp, TQT_SLOT(slotStop()) ); + connect(this, TQT_SIGNAL(record()), + m_rgGUIApp, TQT_SLOT(slotRecord()) ); + connect(this, TQT_SIGNAL(rewind()), + m_rgGUIApp, TQT_SLOT(slotRewind()) ); + connect(this, TQT_SIGNAL(rewindToBeginning()), + m_rgGUIApp, TQT_SLOT(slotRewindToBeginning()) ); + connect(this, TQT_SIGNAL(fastForward()), + m_rgGUIApp, TQT_SLOT(slotFastforward()) ); + connect(this, TQT_SIGNAL(fastForwardToEnd()), + m_rgGUIApp, TQT_SLOT(slotFastForwardToEnd()) ); + connect(this, TQT_SIGNAL(toggleRecord()), + m_rgGUIApp, TQT_SLOT(slotToggleRecord()) ); + connect(this, TQT_SIGNAL(trackDown()), + m_rgGUIApp, TQT_SLOT(slotTrackDown()) ); + connect(this, TQT_SIGNAL(trackUp()), + m_rgGUIApp, TQT_SLOT(slotTrackUp()) ); + connect(this, TQT_SIGNAL(trackMute()), + m_rgGUIApp, TQT_SLOT(slotToggleMutedCurrentTrack()) ); + connect(this, TQT_SIGNAL(trackRecord()), + m_rgGUIApp, TQT_SLOT(slotToggleRecordCurrentTrack()) ); } LircCommander::command LircCommander::commands[] = |