summaryrefslogtreecommitdiffstats
path: root/src/gui/seqmanager/SequenceManager.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-05 17:29:20 +0900
commita3a855ce18bdb905ef57b9feb174afc441132665 (patch)
tree19c604d8c26146c0f36e8b13cfa02982f2196025 /src/gui/seqmanager/SequenceManager.cpp
parent0d651f25b2871e8e16bf7a1c3563066489a7a0b2 (diff)
downloadrosegarden-a3a855ce.tar.gz
rosegarden-a3a855ce.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit e9f46130c2656aaf299d8793556310c9bf95daee)
Diffstat (limited to 'src/gui/seqmanager/SequenceManager.cpp')
-rw-r--r--src/gui/seqmanager/SequenceManager.cpp30
1 files changed, 15 insertions, 15 deletions
diff --git a/src/gui/seqmanager/SequenceManager.cpp b/src/gui/seqmanager/SequenceManager.cpp
index 31820b3..4f5cac4 100644
--- a/src/gui/seqmanager/SequenceManager.cpp
+++ b/src/gui/seqmanager/SequenceManager.cpp
@@ -115,18 +115,18 @@ SequenceManager::SequenceManager(RosegardenGUIDoc *doc,
(m_doc->parent())->parentWidget());
// Connect these for use later
//
- connect(m_countdownTimer, TQT_SIGNAL(timeout()),
- this, TQT_SLOT(slotCountdownTimerTimeout()));
+ connect(m_countdownTimer, TQ_SIGNAL(timeout()),
+ this, TQ_SLOT(slotCountdownTimerTimeout()));
- connect(m_reportTimer, TQT_SIGNAL(timeout()),
- this, TQT_SLOT(slotAllowReport()));
+ connect(m_reportTimer, TQ_SIGNAL(timeout()),
+ this, TQ_SLOT(slotAllowReport()));
- connect(m_compositionMmapperResetTimer, TQT_SIGNAL(timeout()),
- this, TQT_SLOT(slotScheduledCompositionMmapperReset()));
+ connect(m_compositionMmapperResetTimer, TQ_SIGNAL(timeout()),
+ this, TQ_SLOT(slotScheduledCompositionMmapperReset()));
- connect(doc->getCommandHistory(), TQT_SIGNAL(commandExecuted()),
- this, TQT_SLOT(update()));
+ connect(doc->getCommandHistory(), TQ_SIGNAL(commandExecuted()),
+ this, TQ_SLOT(update()));
m_doc->getComposition().addObserver(this);
@@ -162,7 +162,7 @@ void SequenceManager::setDocument(RosegardenGUIDoc* doc)
DataBlockRepository::clear();
m_doc->getComposition().removeObserver(this);
- disconnect(m_doc->getCommandHistory(), TQT_SIGNAL(commandExecuted()));
+ disconnect(m_doc->getCommandHistory(), TQ_SIGNAL(commandExecuted()));
m_segments.clear();
m_triggerSegments.clear();
@@ -188,14 +188,14 @@ void SequenceManager::setDocument(RosegardenGUIDoc* doc)
// Connect this for use later
//
- connect(m_countdownTimer, TQT_SIGNAL(timeout()),
- this, TQT_SLOT(slotCountdownTimerTimeout()));
+ connect(m_countdownTimer, TQ_SIGNAL(timeout()),
+ this, TQ_SLOT(slotCountdownTimerTimeout()));
m_compositionRefreshStatusId = comp.getNewRefreshStatusId();
comp.addObserver(this);
- connect(m_doc->getCommandHistory(), TQT_SIGNAL(commandExecuted()),
- this, TQT_SLOT(update()));
+ connect(m_doc->getCommandHistory(), TQ_SIGNAL(commandExecuted()),
+ this, TQ_SLOT(update()));
for (Composition::iterator i = comp.begin(); i != comp.end(); ++i) {
@@ -215,8 +215,8 @@ void SequenceManager::setDocument(RosegardenGUIDoc* doc)
m_compositionMmapperResetTimer = new TQTimer(m_doc);
- connect(m_compositionMmapperResetTimer, TQT_SIGNAL(timeout()),
- this, TQT_SLOT(slotScheduledCompositionMmapperReset()));
+ connect(m_compositionMmapperResetTimer, TQ_SIGNAL(timeout()),
+ this, TQ_SLOT(slotScheduledCompositionMmapperReset()));
resetCompositionMmapper();