diff options
author | Darrell Anderson <[email protected]> | 2014-02-16 14:40:24 -0600 |
---|---|---|
committer | Darrell Anderson <[email protected]> | 2014-02-16 14:40:24 -0600 |
commit | 0ab5fbc594609c90373e83aae598eb4efd37ddf3 (patch) | |
tree | 4c5a2c8155b6104cca588bfe3cd80837be93f1e0 /src/gui/studio | |
parent | ae53ad08dbe88e0dc753e9aa71e66a8afe441844 (diff) | |
download | rosegarden-0ab5fbc594609c90373e83aae598eb4efd37ddf3.tar.gz rosegarden-0ab5fbc594609c90373e83aae598eb4efd37ddf3.zip |
Fix unintended renaming
Diffstat (limited to 'src/gui/studio')
-rw-r--r-- | src/gui/studio/StudioControl.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/gui/studio/StudioControl.cpp b/src/gui/studio/StudioControl.cpp index 04a838c..5657f57 100644 --- a/src/gui/studio/StudioControl.cpp +++ b/src/gui/studio/StudioControl.cpp @@ -60,7 +60,7 @@ streamOut << (int)type; if (!rgapp->sequencerCall("createMappedObject(int)", replyType, replyData, data)) { - SETQMAN_DEBUG << "createStudioObject - " + SEQMAN_DEBUG << "createStudioObject - " << "failed to contact Rosegarden sequencer" << endl; } else @@ -87,7 +87,7 @@ StudioControl::destroyStudioObject(MappedObjectId id) if (!rgapp->sequencerCall("destroyMappedObject(int)", replyType, replyData, data)) { - SETQMAN_DEBUG << "destroyStudioObject - " + SEQMAN_DEBUG << "destroyStudioObject - " << "failed to contact Rosegarden sequencer" << endl; } else { @@ -119,7 +119,7 @@ StudioControl::getStudioObjectProperty(MappedObjectId id, if (!rgapp->sequencerCall("getPropertyList(int, TQString)", replyType, replyData, data)) { - SETQMAN_DEBUG << "getStudioObjectProperty - " + SEQMAN_DEBUG << "getStudioObjectProperty - " << "failed to contact Rosegarden sequencer" << endl; } else { @@ -224,7 +224,7 @@ StudioControl::getStudioObjectByType(MappedObject::MappedObjectType type) if (!rgapp->sequencerCall("getMappedObjectId(int)", replyType, replyData, data)) { - SETQMAN_DEBUG << "getStudioObjectByType - " + SEQMAN_DEBUG << "getStudioObjectByType - " << "failed to contact Rosegarden sequencer" << endl; } else { @@ -271,7 +271,7 @@ StudioControl::getStudioPluginPort(MappedObjectId pluginId, if (!rgapp->sequencerCall("getMappedPort(int, unsigned long int)", replyType, replyData, data)) { - SETQMAN_DEBUG << "getStudioPluginPort - " + SEQMAN_DEBUG << "getStudioPluginPort - " << "failed to contact Rosegarden sequencer" << endl; } else { @@ -293,7 +293,7 @@ StudioControl::getPluginInformation() if (!rgapp->sequencerCall("getPluginInformation()", replyType, replyData, data)) { - SETQMAN_DEBUG << "getPluginInformation - " + SEQMAN_DEBUG << "getPluginInformation - " << "failed to contact Rosegarden sequencer" << endl; } else { @@ -320,7 +320,7 @@ StudioControl::getPluginProgram(MappedObjectId id, int bank, int program) if (!rgapp->sequencerCall("getPluginProgram(int, int, int)", replyType, replyData, data)) { - SETQMAN_DEBUG << "getPluginProgram - " + SEQMAN_DEBUG << "getPluginProgram - " << "failed to contact Rosegarden sequencer" << endl; } else { @@ -346,7 +346,7 @@ StudioControl::getPluginProgram(MappedObjectId id, TQString name) if (!rgapp->sequencerCall("getPluginProgram(int, TQString)", replyType, replyData, data)) { - SETQMAN_DEBUG << "getPluginProgram - " + SEQMAN_DEBUG << "getPluginProgram - " << "failed to contact Rosegarden sequencer" << endl; } else { @@ -370,7 +370,7 @@ StudioControl::connectStudioObjects(MappedObjectId id1, streamOut << (int)id2; if (!rgapp->sequencerSend("connectMappedObjects(int, int)", data)) { - SETQMAN_DEBUG << "connectStudioObjects - " + SEQMAN_DEBUG << "connectStudioObjects - " << "failed to contact Rosegarden sequencer" << endl; } @@ -391,7 +391,7 @@ StudioControl::disconnectStudioObjects(MappedObjectId id1, streamOut << (int)id2; if (!rgapp->sequencerSend("disconnectMappedObjects(int, int)", data)) { - SETQMAN_DEBUG << "disconnectStudioObjects - " + SEQMAN_DEBUG << "disconnectStudioObjects - " << "failed to contact Rosegarden sequencer" << endl; } @@ -410,7 +410,7 @@ StudioControl::disconnectStudioObject(MappedObjectId id) streamOut << (int)id; if (!rgapp->sequencerSend("disconnectMappedObject(int)", data)) { - SETQMAN_DEBUG << "disconnectStudioObject - " + SEQMAN_DEBUG << "disconnectStudioObject - " << "failed to contact Rosegarden sequencer" << endl; } |