diff main/MainWindow.cpp @ 80:f4f52566e451

* Fixes to presentation and organisation of plugins (especially duplicates)
author Chris Cannam
date Fri, 15 Dec 2006 16:34:17 +0000
parents c1318aac18d2
children 911c0bd745cd
line wrap: on
line diff
--- a/main/MainWindow.cpp	Fri Dec 08 18:17:29 2006 +0000
+++ b/main/MainWindow.cpp	Fri Dec 15 16:34:17 2006 +0000
@@ -1065,6 +1065,8 @@
 	QString description = transforms[i].description;
 	if (description == "") description = transforms[i].name;
 
+//        std::cerr << "Plugin Description: " << description.toStdString() << std::endl;
+
         QString type = transforms[i].type;
 
         QString category = transforms[i].category;
@@ -1098,7 +1100,7 @@
                       << description.toStdString() << "\" (maker = \""
                       << maker.toStdString() << "\")" << std::endl;
         } else {
-            makerMenus[type][maker]->addAction(pluginName, action);
+            makerMenus[type][maker]->addAction(action);
         }
 
         action = new QAction(tr("%1...").arg(output == "" ? pluginName : output), this);