reverted the fix for Unicode compilation with VC++ as it breaks other ports (and shouldn't be necessary anyhow)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11823 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2001-10-04 12:32:24 +00:00
parent 9b985798bc
commit 93d2bf4406

View File

@ -255,7 +255,7 @@ wxDllLoader::LoadLibrary(const wxString & libname, bool *success)
char zError[256] = "";
wxDllOpen(zError, libname, handle);
#else // !Mac
handle = wxDllOpen(libname.c_str());
handle = wxDllOpen(libname);
#endif // OS
if ( !handle )