From: Václav Slavík Date: Wed, 4 Sep 2002 22:07:12 +0000 (+0000) Subject: compilation fix for wxUSE_WCHAR_T=0 X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/77ab27791441c619c69869f0a2577d70f946abaa compilation fix for wxUSE_WCHAR_T=0 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16978 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/strconv.cpp b/src/common/strconv.cpp index 9f327e1eff..25620c07c5 100644 --- a/src/common/strconv.cpp +++ b/src/common/strconv.cpp @@ -54,7 +54,7 @@ WXDLLEXPORT_DATA(wxCSConv) wxConvLocal((const wxChar *)NULL); #else // stand-ins in absence of wchar_t - WXDLLEXPORT_DATA(wxMBConv) wxConvLibc, wxConvFile; + WXDLLEXPORT_DATA(wxMBConv) wxConvLibc, wxConvFile, wxConvLocal; #endif // wxUSE_WCHAR_T WXDLLEXPORT_DATA(wxMBConv *) wxConvCurrent = &wxConvLibc;