# HG changeset patch # User Chris Cannam # Date 1143826814 0 # Node ID 1d176af87056231547dded5cbf4ba57cdf7fa74b # Parent 72fa239a4880c549b869d80707fb1056adcd5462 * Add support for frequency-domain inputs to Vamp plugins diff -r 72fa239a4880 -r 1d176af87056 widgets/PluginParameterDialog.cpp --- 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)); }