diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-31 04:15:04 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-31 04:15:04 +0000 |
commit | 2d59c280c10a0d408ed804d5ca594884b5ee1f4d (patch) | |
tree | aadc7a2b0be4f2c4da2e3dcac0dccfd82fce3e8f /src/gui | |
parent | 2cba698342d2910951eedaf099cdd08d333bdfac (diff) | |
download | rosegarden-2d59c280c10a0d408ed804d5ca594884b5ee1f4d.tar.gz rosegarden-2d59c280c10a0d408ed804d5ca594884b5ee1f4d.zip |
Fix remaining instances of tqStatus embedded in user visible strings
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/rosegarden@1250385 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/rulers/ChordNameRuler.cpp | 8 | ||||
-rw-r--r-- | src/gui/seqmanager/SequenceManager.cpp | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/src/gui/rulers/ChordNameRuler.cpp b/src/gui/rulers/ChordNameRuler.cpp index 91dde1d..6d83e2d 100644 --- a/src/gui/rulers/ChordNameRuler.cpp +++ b/src/gui/rulers/ChordNameRuler.cpp @@ -327,16 +327,16 @@ ChordNameRuler::recalculate(timeT from, timeT to) NOTATION_DEBUG << "ChordNameRuler::recalculate: from==to, recalculating all" << endl; level = RecalcWhole; } else if (overalltqStatus.from() == overalltqStatus.to()) { - NOTATION_DEBUG << "ChordNameRuler::recalculate: overalltqStatus.from==overalltqStatus.to, ignoring" << endl; + NOTATION_DEBUG << "ChordNameRuler::recalculate: overallStatus.from==overallStatus.to, ignoring" << endl; level = RecalcNone; } else if (overalltqStatus.from() >= from && overalltqStatus.to() <= to) { - NOTATION_DEBUG << "ChordNameRuler::recalculate: change is " << overalltqStatus.from() << "->" << overalltqStatus.to() << ", I show " << from << "->" << to << ", recalculating visible area" << endl; + NOTATION_DEBUG << "ChordNameRuler::recalculate: change is " << overallStatus.from() << "->" << overallStatus.to() << ", I show " << from << "->" << to << ", recalculating visible area" << endl; level = RecalcVisible; } else if (overalltqStatus.from() >= to || overalltqStatus.to() <= from) { - NOTATION_DEBUG << "ChordNameRuler::recalculate: change is " << overalltqStatus.from() << "->" << overalltqStatus.to() << ", I show " << from << "->" << to << ", ignoring" << endl; + NOTATION_DEBUG << "ChordNameRuler::recalculate: change is " << overallStatus.from() << "->" << overallStatus.to() << ", I show " << from << "->" << to << ", ignoring" << endl; level = RecalcNone; } else { - NOTATION_DEBUG << "ChordNameRuler::recalculate: change is " << overalltqStatus.from() << "->" << overalltqStatus.to() << ", I show " << from << "->" << to << ", recalculating whole" << endl; + NOTATION_DEBUG << "ChordNameRuler::recalculate: change is " << overallStatus.from() << "->" << overallStatus.to() << ", I show " << from << "->" << to << ", recalculating whole" << endl; level = RecalcWhole; } } diff --git a/src/gui/seqmanager/SequenceManager.cpp b/src/gui/seqmanager/SequenceManager.cpp index ec80707..df7a3d8 100644 --- a/src/gui/seqmanager/SequenceManager.cpp +++ b/src/gui/seqmanager/SequenceManager.cpp @@ -1278,7 +1278,7 @@ SequenceManager::checkSoundDrivertqStatus(bool warnUser) streamOut << TQString(VERSION); - if (! rgapp->sequencerCall("getSoundDrivertqStatus(TQString)", + if (! rgapp->sequencerCall("getSoundDriverStatus(TQString)", replyType, replyData, data)) { m_soundDrivertqStatus = NO_DRIVER; @@ -1695,7 +1695,7 @@ void SequenceManager::update() void SequenceManager::checkRefreshtqStatus() { - SETQMAN_DEBUG << "SequenceManager::checkRefreshtqStatus()\n"; + SETQMAN_DEBUG << "SequenceManager::checkRefreshStatus()\n"; // Look at trigger segments first: if one of those has changed, we'll // need to be aware of it when scanning segments subsequently @@ -1725,7 +1725,7 @@ void SequenceManager::checkRefreshtqStatus() m_triggerSegments = newTriggerMap; - SETQMAN_DEBUG << "SequenceManager::checkRefreshtqStatus: segments modified by changes to trigger segments are:" << endl; + SETQMAN_DEBUG << "SequenceManager::checkRefreshStatus: segments modified by changes to trigger segments are:" << endl; int x = 0; for (TriggerSegmentRec::SegmentRuntimeIdSet::iterator i = ridset.begin(); i != ridset.end(); ++i) { @@ -1741,7 +1741,7 @@ void SequenceManager::checkRefreshtqStatus() } m_removedSegments.clear(); - SETQMAN_DEBUG << "SequenceManager::checkRefreshtqStatus: we have " + SETQMAN_DEBUG << "SequenceManager::checkRefreshStatus: we have " << m_segments.size() << " segments" << endl; // then the ones which are still there |