diff options
author | Timothy Pearson <[email protected]> | 2011-11-26 17:42:48 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-11-26 17:42:48 -0600 |
commit | 4b3c5dd929ea78ca3b6f656a63d70b10d2f43885 (patch) | |
tree | 995c0d3e35794c1bb1029d6b7eacdd80827807bd /src/sound/LADSPAPluginFactory.cpp | |
parent | 1461610fb35bb0fcee490f274ea84b8ebfeb1566 (diff) | |
download | rosegarden-4b3c5dd929ea78ca3b6f656a63d70b10d2f43885.tar.gz rosegarden-4b3c5dd929ea78ca3b6f656a63d70b10d2f43885.zip |
Fix FTBFS
Diffstat (limited to 'src/sound/LADSPAPluginFactory.cpp')
-rw-r--r-- | src/sound/LADSPAPluginFactory.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/sound/LADSPAPluginFactory.cpp b/src/sound/LADSPAPluginFactory.cpp index 204f05e..9a7b49a 100644 --- a/src/sound/LADSPAPluginFactory.cpp +++ b/src/sound/LADSPAPluginFactory.cpp @@ -73,7 +73,7 @@ LADSPAPluginFactory::enumeratePlugins(MappedObjectPropertyList &list) const LADSPA_Descriptor *descriptor = getLADSPADescriptor(*i); if (!descriptor) { - std::cerr << "WARNING: LADSPAPluginFactory::enumeratePlugins: couldn't get descriptor for identifier " << *i << std::endl; + std::cerr << "WARNING: LADSPAPluginFactory::enumeratePlugins: couldn't get descriptor for identifier " << (*i).ascii() << std::endl; continue; } @@ -475,7 +475,7 @@ LADSPAPluginFactory::getLADSPADescriptor(TQString identifier) if (m_libraryHandles.find(soname) == m_libraryHandles.end()) { loadLibrary(soname); if (m_libraryHandles.find(soname) == m_libraryHandles.end()) { - std::cerr << "WARNING: LADSPAPluginFactory::getLADSPADescriptor: loadLibrary failed for " << soname << std::endl; + std::cerr << "WARNING: LADSPAPluginFactory::getLADSPADescriptor: loadLibrary failed for " << soname.ascii() << std::endl; return 0; } } @@ -486,7 +486,7 @@ LADSPAPluginFactory::getLADSPADescriptor(TQString identifier) dlsym(libraryHandle, "ladspa_descriptor"); if (!fn) { - std::cerr << "WARNING: LADSPAPluginFactory::getLADSPADescriptor: No descriptor function in library " << soname << std::endl; + std::cerr << "WARNING: LADSPAPluginFactory::getLADSPADescriptor: No descriptor function in library " << soname.ascii() << std::endl; return 0; } @@ -499,7 +499,7 @@ LADSPAPluginFactory::getLADSPADescriptor(TQString identifier) ++index; } - std::cerr << "WARNING: LADSPAPluginFactory::getLADSPADescriptor: No such plugin as " << label << " in library " << soname << std::endl; + std::cerr << "WARNING: LADSPAPluginFactory::getLADSPADescriptor: No such plugin as " << label.ascii() << " in library " << soname.ascii() << std::endl; return 0; } @@ -623,7 +623,7 @@ LADSPAPluginFactory::discoverPlugins() << "discovering plugins; path is "; for (std::vector<TQString>::iterator i = pathList.begin(); i != pathList.end(); ++i) { - std::cerr << "[" << *i << "] "; + std::cerr << "[" << (*i).ascii() << "] "; } std::cerr << std::endl; @@ -684,7 +684,7 @@ LADSPAPluginFactory::discoverPlugins(TQString soName) if (!libraryHandle) { std::cerr << "WARNING: LADSPAPluginFactory::discoverPlugins: couldn't dlopen " - << soName << " - " << dlerror() << std::endl; + << soName.ascii() << " - " << dlerror() << std::endl; return ; } @@ -692,7 +692,7 @@ LADSPAPluginFactory::discoverPlugins(TQString soName) dlsym(libraryHandle, "ladspa_descriptor"); if (!fn) { - std::cerr << "WARNING: LADSPAPluginFactory::discoverPlugins: No descriptor function in " << soName << std::endl; + std::cerr << "WARNING: LADSPAPluginFactory::discoverPlugins: No descriptor function in " << soName.ascii() << std::endl; return ; } |