mirror of
https://github.com/cookiengineer/audacity
synced 2026-02-24 15:11:11 +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:
@@ -226,6 +226,7 @@ public:
|
||||
void Terminate();
|
||||
|
||||
static PluginManager & Get();
|
||||
static void Destroy();
|
||||
|
||||
static PluginID GetID(ModuleInterface *module);
|
||||
static PluginID GetID(EffectIdentInterface *effect);
|
||||
@@ -301,7 +302,7 @@ private:
|
||||
int b64decode(wxString in, void *out);
|
||||
|
||||
private:
|
||||
static PluginManager mInstance;
|
||||
static PluginManager *mInstance;
|
||||
|
||||
bool IsDirty();
|
||||
void SetDirty(bool dirty = true);
|
||||
|
||||
Reference in New Issue
Block a user