From e34ea138e0c9d602bb124c7036524def63e02cbc Mon Sep 17 00:00:00 2001 From: lllucius Date: Mon, 28 Mar 2011 05:49:25 +0000 Subject: [PATCH] Temporary change to prevent "Error: Couldn't find symbol 'MainPanelFunc' in a dynamic library (error 127: the specified procedure could not be found.)" dialog from popping up at Audacity startup. This only affects Mac. --- src/LoadModules.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/LoadModules.cpp b/src/LoadModules.cpp index d3532b074..f518cb80f 100644 --- a/src/LoadModules.cpp +++ b/src/LoadModules.cpp @@ -74,6 +74,9 @@ void LoadModule(wxString fname) { wxLogDebug(wxT("About to load module %s"), fname.c_str()); tModuleInit mainFn = NULL; +#if defined(__WXMAC__) + wxLogNull logNo; +#endif // As a courtesy to some modules that might be bridges to // open other modules, we set the current working