summaryrefslogtreecommitdiffstats
path: root/src/gui/rulers/StandardRuler.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-02 11:38:07 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-02 12:06:34 +0900
commite9f46130c2656aaf299d8793556310c9bf95daee (patch)
tree19c604d8c26146c0f36e8b13cfa02982f2196025 /src/gui/rulers/StandardRuler.cpp
parent9b054308cef27a642eaa6e9a86db215151468e0b (diff)
downloadrosegarden-e9f46130c2656aaf299d8793556310c9bf95daee.tar.gz
rosegarden-e9f46130c2656aaf299d8793556310c9bf95daee.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/gui/rulers/StandardRuler.cpp')
-rw-r--r--src/gui/rulers/StandardRuler.cpp48
1 files changed, 24 insertions, 24 deletions
diff --git a/src/gui/rulers/StandardRuler.cpp b/src/gui/rulers/StandardRuler.cpp
index 52f9ebb..e0489a7 100644
--- a/src/gui/rulers/StandardRuler.cpp
+++ b/src/gui/rulers/StandardRuler.cpp
@@ -74,8 +74,8 @@ StandardRuler::StandardRuler(RosegardenGUIDoc *doc,
}
TQObject::connect
- (doc->getCommandHistory(), TQT_SIGNAL(commandExecuted()),
- this, TQT_SLOT(update()));
+ (doc->getCommandHistory(), TQ_SIGNAL(commandExecuted()),
+ this, TQ_SLOT(update()));
}
@@ -94,49 +94,49 @@ void StandardRuler::connectRulerToDocPointer(RosegardenGUIDoc *doc)
// so they are re-emitted from the loop ruler by this widget
//
TQObject::connect
- (m_loopRuler, TQT_SIGNAL(setPointerPosition(timeT)),
- doc, TQT_SLOT(slotSetPointerPosition(timeT)));
+ (m_loopRuler, TQ_SIGNAL(setPointerPosition(timeT)),
+ doc, TQ_SLOT(slotSetPointerPosition(timeT)));
TQObject::connect
- (m_hButtonBar, TQT_SIGNAL(setPointerPosition(timeT)),
- doc, TQT_SLOT(slotSetPointerPosition(timeT)));
+ (m_hButtonBar, TQ_SIGNAL(setPointerPosition(timeT)),
+ doc, TQ_SLOT(slotSetPointerPosition(timeT)));
TQObject::connect
- (m_hButtonBar, TQT_SIGNAL(editMarkers()),
- RosegardenGUIApp::self(), TQT_SLOT(slotEditMarkers()));
+ (m_hButtonBar, TQ_SIGNAL(editMarkers()),
+ RosegardenGUIApp::self(), TQ_SLOT(slotEditMarkers()));
TQObject::connect
- (m_hButtonBar, TQT_SIGNAL(addMarker(timeT)),
- RosegardenGUIApp::self(), TQT_SLOT(slotAddMarker(timeT)));
+ (m_hButtonBar, TQ_SIGNAL(addMarker(timeT)),
+ RosegardenGUIApp::self(), TQ_SLOT(slotAddMarker(timeT)));
TQObject::connect
- (m_hButtonBar, TQT_SIGNAL(deleteMarker(int, timeT, TQString, TQString)),
- RosegardenGUIApp::self(), TQT_SLOT(slotDeleteMarker(int, timeT, TQString, TQString)));
+ (m_hButtonBar, TQ_SIGNAL(deleteMarker(int, timeT, TQString, TQString)),
+ RosegardenGUIApp::self(), TQ_SLOT(slotDeleteMarker(int, timeT, TQString, TQString)));
TQObject::connect
- (m_loopRuler, TQT_SIGNAL(dragPointerToPosition(timeT)),
- this, TQT_SIGNAL(dragPointerToPosition(timeT)));
+ (m_loopRuler, TQ_SIGNAL(dragPointerToPosition(timeT)),
+ this, TQ_SIGNAL(dragPointerToPosition(timeT)));
TQObject::connect
- (m_loopRuler, TQT_SIGNAL(dragLoopToPosition(timeT)),
- this, TQT_SIGNAL(dragLoopToPosition(timeT)));
+ (m_loopRuler, TQ_SIGNAL(dragLoopToPosition(timeT)),
+ this, TQ_SIGNAL(dragLoopToPosition(timeT)));
TQObject::connect
- (m_loopRuler, TQT_SIGNAL(setPlayPosition(timeT)),
- RosegardenGUIApp::self(), TQT_SLOT(slotSetPlayPosition(timeT)));
+ (m_loopRuler, TQ_SIGNAL(setPlayPosition(timeT)),
+ RosegardenGUIApp::self(), TQ_SLOT(slotSetPlayPosition(timeT)));
TQObject::connect
- (m_hButtonBar, TQT_SIGNAL(setLoop(timeT, timeT)),
- doc, TQT_SLOT(slotSetLoop(timeT, timeT)));
+ (m_hButtonBar, TQ_SIGNAL(setLoop(timeT, timeT)),
+ doc, TQ_SLOT(slotSetLoop(timeT, timeT)));
TQObject::connect
- (m_loopRuler, TQT_SIGNAL(setLoop(timeT, timeT)),
- doc, TQT_SLOT(slotSetLoop(timeT, timeT)));
+ (m_loopRuler, TQ_SIGNAL(setLoop(timeT, timeT)),
+ doc, TQ_SLOT(slotSetLoop(timeT, timeT)));
TQObject::connect
- (doc, TQT_SIGNAL(loopChanged(timeT, timeT)),
+ (doc, TQ_SIGNAL(loopChanged(timeT, timeT)),
m_loopRuler,
- TQT_SLOT(slotSetLoopMarker(timeT, timeT)));
+ TQ_SLOT(slotSetLoopMarker(timeT, timeT)));
m_loopRuler->setBackgroundColor(GUIPalette::getColour(GUIPalette::PointerRuler));
}