summaryrefslogtreecommitdiffstats
path: root/src/sound/LADSPAPluginFactory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/sound/LADSPAPluginFactory.cpp')
-rw-r--r--src/sound/LADSPAPluginFactory.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sound/LADSPAPluginFactory.cpp b/src/sound/LADSPAPluginFactory.cpp
index 9daa431..204f05e 100644
--- a/src/sound/LADSPAPluginFactory.cpp
+++ b/src/sound/LADSPAPluginFactory.cpp
@@ -770,9 +770,9 @@ LADSPAPluginFactory::generateFallbackCategories()
std::vector<TQString> path;
for (size_t i = 0; i < pluginPath.size(); ++i) {
- if (pluginPath[i].tqcontains("/lib/")) {
+ if (pluginPath[i].contains("/lib/")) {
TQString p(pluginPath[i]);
- p.tqreplace("/lib/", "/share/");
+ p.replace("/lib/", "/share/");
path.push_back(p);
// std::cerr << "LADSPAPluginFactory::generateFallbackCategories: path element " << p << std::endl;
}