summaryrefslogtreecommitdiffstats
path: root/src/sound/AudioProcess.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-11-26 17:42:48 -0600
committerTimothy Pearson <[email protected]>2011-11-26 17:42:48 -0600
commit4b3c5dd929ea78ca3b6f656a63d70b10d2f43885 (patch)
tree995c0d3e35794c1bb1029d6b7eacdd80827807bd /src/sound/AudioProcess.cpp
parent1461610fb35bb0fcee490f274ea84b8ebfeb1566 (diff)
downloadrosegarden-4b3c5dd929ea78ca3b6f656a63d70b10d2f43885.tar.gz
rosegarden-4b3c5dd929ea78ca3b6f656a63d70b10d2f43885.zip
Fix FTBFS
Diffstat (limited to 'src/sound/AudioProcess.cpp')
-rw-r--r--src/sound/AudioProcess.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sound/AudioProcess.cpp b/src/sound/AudioProcess.cpp
index c209703..7a7f1ab 100644
--- a/src/sound/AudioProcess.cpp
+++ b/src/sound/AudioProcess.cpp
@@ -913,7 +913,7 @@ AudioInstrumentMixer::setPlugin(InstrumentId id, int position, TQString identifi
{
// Not RT safe
- std::cerr << "AudioInstrumentMixer::setPlugin(" << id << ", " << position << ", " << identifier << ")" << std::endl;
+ std::cerr << "AudioInstrumentMixer::setPlugin(" << id << ", " << position << ", " << identifier.ascii() << ")" << std::endl;
int channels = 2;
if (m_bufferMap.find(id) != m_bufferMap.end()) {
@@ -938,7 +938,7 @@ AudioInstrumentMixer::setPlugin(InstrumentId id, int position, TQString identifi
}
} else {
std::cerr << "AudioInstrumentMixer::setPlugin: No factory for identifier "
- << identifier << std::endl;
+ << identifier.ascii() << std::endl;
}
RunnablePluginInstance *oldInstance = 0;