From 11f31c37e5fa4889d9989f10272f44845449cb7b Mon Sep 17 00:00:00 2001 From: tpearson Date: Mon, 6 Sep 2010 20:59:29 +0000 Subject: Initial TQt conversion git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/rosegarden@1172292 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- src/gui/application/LircCommander.cpp | 58 +++++++++++++++++------------------ 1 file changed, 29 insertions(+), 29 deletions(-) (limited to 'src/gui/application/LircCommander.cpp') 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 +#include 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[] = -- cgit v1.2.3