summaryrefslogtreecommitdiffstats
path: root/src/sound/DSSIPluginFactory.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-12-15 15:33:46 -0600
committerTimothy Pearson <[email protected]>2011-12-15 15:33:46 -0600
commit4faf11eccc5f08d2aa0540157d6eff80b7cdb02a (patch)
tree19bc4d69423c21bcde8ac0cb6fcb11146ae19137 /src/sound/DSSIPluginFactory.cpp
parente6d6692eda797b10f322a83ffdcf23fca719709e (diff)
downloadrosegarden-4faf11eccc5f08d2aa0540157d6eff80b7cdb02a.tar.gz
rosegarden-4faf11eccc5f08d2aa0540157d6eff80b7cdb02a.zip
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'src/sound/DSSIPluginFactory.cpp')
-rw-r--r--src/sound/DSSIPluginFactory.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/sound/DSSIPluginFactory.cpp b/src/sound/DSSIPluginFactory.cpp
index 9189fa6..9e10778 100644
--- a/src/sound/DSSIPluginFactory.cpp
+++ b/src/sound/DSSIPluginFactory.cpp
@@ -67,14 +67,14 @@ DSSIPluginFactory::enumeratePlugins(MappedObjectPropertyList &list)
list.push_back(*i);
list.push_back(descriptor->Name);
- list.push_back(TQString("%1").tqarg(descriptor->UniqueID));
+ list.push_back(TQString("%1").arg(descriptor->UniqueID));
list.push_back(descriptor->Label);
list.push_back(descriptor->Maker);
list.push_back(descriptor->Copyright);
list.push_back((ddesc->run_synth || ddesc->run_multiple_synths) ? "true" : "false");
list.push_back(ddesc->run_multiple_synths ? "true" : "false");
list.push_back(m_taxonomy[descriptor->UniqueID]);
- list.push_back(TQString("%1").tqarg(descriptor->PortCount));
+ list.push_back(TQString("%1").arg(descriptor->PortCount));
for (unsigned long p = 0; p < descriptor->PortCount; ++p) {
@@ -90,13 +90,13 @@ DSSIPluginFactory::enumeratePlugins(MappedObjectPropertyList &list)
type |= PluginPort::Output;
}
- list.push_back(TQString("%1").tqarg(p));
+ list.push_back(TQString("%1").arg(p));
list.push_back(descriptor->PortNames[p]);
- list.push_back(TQString("%1").tqarg(type));
- list.push_back(TQString("%1").tqarg(getPortDisplayHint(descriptor, p)));
- list.push_back(TQString("%1").tqarg(getPortMinimum(descriptor, p)));
- list.push_back(TQString("%1").tqarg(getPortMaximum(descriptor, p)));
- list.push_back(TQString("%1").tqarg(getPortDefault(descriptor, p)));
+ list.push_back(TQString("%1").arg(type));
+ list.push_back(TQString("%1").arg(getPortDisplayHint(descriptor, p)));
+ list.push_back(TQString("%1").arg(getPortMinimum(descriptor, p)));
+ list.push_back(TQString("%1").arg(getPortMaximum(descriptor, p)));
+ list.push_back(TQString("%1").arg(getPortDefault(descriptor, p)));
}
}