X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Fplugin_manager.cc;h=89ddc5ff19f303fb204bd979f96be89e362a3426;hb=424cacfbc83516d9e935bd93135e58b34dcfc002;hp=55c758cb5e1d27996e49606a64682cef79da4d2d;hpb=fc6b965ad0f79ee6d049567b99fc92ccef811fa7;p=ardour.git diff --git a/libs/ardour/plugin_manager.cc b/libs/ardour/plugin_manager.cc index 55c758cb5e..89ddc5ff19 100644 --- a/libs/ardour/plugin_manager.cc +++ b/libs/ardour/plugin_manager.cc @@ -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