diff widgets/PluginParameterDialog.cpp @ 207:a5b3c9f580c1

* Fixes for new Vamp API changes -- I think plugin parameters are not being set correctly yet though
author Chris Cannam
date Mon, 26 Feb 2007 20:08:51 +0000
parents 42118892f428
children 8495187c13ce
line wrap: on
line diff
--- a/widgets/PluginParameterDialog.cpp	Mon Feb 26 16:32:12 2007 +0000
+++ b/widgets/PluginParameterDialog.cpp	Mon Feb 26 20:08:51 2007 +0000
@@ -60,7 +60,7 @@
     QFont font(pluginBox->font());
     font.setBold(true);
 
-    QLabel *nameLabel = new QLabel(plugin->getDescription().c_str());
+    QLabel *nameLabel = new QLabel(plugin->getName().c_str());
     nameLabel->setWordWrap(true);
     nameLabel->setFont(font);
 
@@ -300,7 +300,7 @@
         int increment = 1024;
         if (fePlugin) {
             size = fePlugin->getPreferredBlockSize();
-            std::cerr << "Feature extraction plugin \"" << fePlugin->getDescription() << "\" reports preferred block size as " << size << std::endl;
+            std::cerr << "Feature extraction plugin \"" << fePlugin->getName() << "\" reports preferred block size as " << size << std::endl;
             if (size == 0) size = 1024;
             increment = fePlugin->getPreferredStepSize();
             if (increment == 0) {