projects
/
wxWidgets.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9b98579
)
reverted the fix for Unicode compilation with VC++ as it breaks other ports (and...
author
Vadim Zeitlin
<vadim@wxwidgets.org>
Thu, 4 Oct 2001 12:32:24 +0000
(12:32 +0000)
committer
Vadim Zeitlin
<vadim@wxwidgets.org>
Thu, 4 Oct 2001 12:32:24 +0000
(12:32 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11823
c3d73ce0
-8a6f-49c7-b76d-
6d57e0e08775
src/common/dynlib.cpp
patch
|
blob
|
blame
|
history
diff --git
a/src/common/dynlib.cpp
b/src/common/dynlib.cpp
index dc2fe27bea5ae00f6d8d19e998a0787860ebc7c5..3660cc21f81211392d5d2fddb3cf28be82a286d1 100644
(file)
--- 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 )