summaryrefslogtreecommitdiffstats
path: root/src/sound/DSSIPluginFactory.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:57:35 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:57:35 -0600
commit6ca08e7a881c0c97f338e0085f75af04ec08ad04 (patch)
tree5462bef0f060df1c19e3fcb98250e5cfa24edc11 /src/sound/DSSIPluginFactory.cpp
parent4faf11eccc5f08d2aa0540157d6eff80b7cdb02a (diff)
downloadrosegarden-6ca08e7a881c0c97f338e0085f75af04ec08ad04.tar.gz
rosegarden-6ca08e7a881c0c97f338e0085f75af04ec08ad04.zip
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit 4faf11eccc5f08d2aa0540157d6eff80b7cdb02a.
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 9e10778..9189fa6 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").arg(descriptor->UniqueID));
+ list.push_back(TQString("%1").tqarg(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").arg(descriptor->PortCount));
+ list.push_back(TQString("%1").tqarg(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").arg(p));
+ list.push_back(TQString("%1").tqarg(p));
list.push_back(descriptor->PortNames[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)));
+ 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)));
}
}