mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-23 17:30:17 +01:00
Fix for bug #857
Even though this is only a P2, I felt it would be quite bothersome for the users and might cause some confusion. The problem was the the wxLocale was being deleted before all usage of it was complete. The fix was to explicitly delete the plugin and module managers.
This commit is contained in:
@@ -82,6 +82,7 @@ public:
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
static ModuleManager & Get();
|
||||
static void Destroy();
|
||||
|
||||
void Initialize(CommandHandler & cmdHandler);
|
||||
int Dispatch(ModuleDispatchTypes type);
|
||||
@@ -106,7 +107,7 @@ private:
|
||||
void UnloadModule(ModuleInterface *module);
|
||||
|
||||
private:
|
||||
static ModuleManager mInstance;
|
||||
static ModuleManager *mInstance;
|
||||
|
||||
ModuleMainMap mModuleMains;
|
||||
ModuleMap mDynModules;
|
||||
|
||||
Reference in New Issue
Block a user