X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e4db172a3b318df9aff178eb6c5da149d56e0859..a57d600f1aa4bae88f4c9b8d89a35332c412939e:/src/common/dynlib.cpp diff --git a/src/common/dynlib.cpp b/src/common/dynlib.cpp index 099ac32589..f400389c4a 100644 --- a/src/common/dynlib.cpp +++ b/src/common/dynlib.cpp @@ -34,12 +34,12 @@ #ifndef WX_PRECOMP #include "wx/intl.h" #include "wx/log.h" + #include "wx/app.h" + #include "wx/utils.h" #endif //WX_PRECOMP #include "wx/filefn.h" -#include "wx/utils.h" #include "wx/filename.h" // for SplitPath() -#include "wx/app.h" #include "wx/apptrait.h" #include "wx/arrimpl.cpp" @@ -119,7 +119,7 @@ bool wxDynamicLibrary::Load(const wxString& libnameOrig, int flags) } #elif defined(__WXPM__) || defined(__EMX__) - char err[256] = ""; + char err[256] = ""; DosLoadModule(err, sizeof(err), (PSZ)libname.c_str(), &m_handle); #else // this should be the only remaining branch eventually m_handle = RawLoad(libname, flags);