Unicode compilation fix

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11818 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2001-10-04 01:46:30 +00:00
parent 17d5cf65bd
commit 50563ef1bd

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);
handle = wxDllOpen(libname.c_str());
#endif // OS
if ( !handle )