changeset 72:1d176af87056

* Add support for frequency-domain inputs to Vamp plugins
author Chris Cannam
date Fri, 31 Mar 2006 17:40:14 +0000
parents 72fa239a4880
children ad1fe715b480
files widgets/PluginParameterDialog.cpp
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/widgets/PluginParameterDialog.cpp	Fri Mar 31 15:56:35 2006 +0000
+++ b/widgets/PluginParameterDialog.cpp	Fri Mar 31 17:40:14 2006 +0000
@@ -131,7 +131,7 @@
                 channelLayout->addWidget(new QLabel(tr("This plugin only has a single channel input,\nbut the source has %1 channels.").arg(sourceChannels)));
 
                 QComboBox *channelCombo = new QComboBox;
-                channelCombo->addItem(tr("Use sum of source channels").arg(sourceChannels));
+                channelCombo->addItem(tr("Use sum of source channels"));
                 for (int i = 0; i < sourceChannels; ++i) {
                     channelCombo->addItem(tr("Use channel %1 only").arg(i + 1));
                 }