variable plugin port config.
[ardour.git] / libs / ardour / plugin_manager.cc
index 55c758cb5e1d27996e49606a64682cef79da4d2d..89ddc5ff19f303fb204bd979f96be89e362a3426 100644 (file)
@@ -831,13 +831,13 @@ static std::string dll_info (std::string path) {
        type = *((uint16_t*) &buf[4]);
        switch (type) {
                case 0x014c:
-                       rv = _("i386 (32bit)");
+                       rv = _("i386 (32-bit)");
                        break;
                case  0x0200:
                        rv = _("Itanium");
                        break;
                case 0x8664:
-                       rv = _("x64 (64bit)");
+                       rv = _("x64 (64-bit)");
                        break;
                case 0:
                        rv = _("Native Architecture");
@@ -1102,6 +1102,10 @@ PluginManager::save_statuses ()
                case LXVST:
                        ofs << "LXVST";
                        break;
+               case Lua:
+                       assert (0);
+                       continue;
+                       break;
                }
 
                ofs << ' ';
@@ -1123,6 +1127,7 @@ PluginManager::save_statuses ()
                ofs << endl;
        }
        g_file_set_contents (path.c_str(), ofs.str().c_str(), -1, NULL);
+       PluginStatusesChanged (); /* EMIT SIGNAL */
 }
 
 void