From 93d2bf4406e5f850189f827275c66ef99bb64791 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 4 Oct 2001 12:32:24 +0000 Subject: [PATCH] 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 --- src/common/dynlib.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/dynlib.cpp b/src/common/dynlib.cpp index dc2fe27bea..3660cc21f8 100644 --- a/src/common/dynlib.cpp +++ b/src/common/dynlib.cpp @@ -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 ) -- 2.50.0