diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-02 11:38:07 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-02 12:06:34 +0900 |
commit | e9f46130c2656aaf299d8793556310c9bf95daee (patch) | |
tree | 19c604d8c26146c0f36e8b13cfa02982f2196025 /src/gui/seqmanager/SequenceManager.cpp | |
parent | 9b054308cef27a642eaa6e9a86db215151468e0b (diff) | |
download | rosegarden-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/seqmanager/SequenceManager.cpp')
-rw-r--r-- | src/gui/seqmanager/SequenceManager.cpp | 30 |
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(); |