From: David Webster Date: Fri, 5 Apr 2002 20:08:51 +0000 (+0000) Subject: need wxUSE_WCHAR_T around wxConvLocal X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/7f1698c34c3d4241bb96a6a40d02bd25df6db594?ds=inline need wxUSE_WCHAR_T around wxConvLocal git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14955 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/strconv.cpp b/src/common/strconv.cpp index d613e6174a..1a5dbe119a 100644 --- a/src/common/strconv.cpp +++ b/src/common/strconv.cpp @@ -66,7 +66,9 @@ public: virtual bool OnInit() { return TRUE; } virtual void OnExit() { +#if wxUSE_WCHAR_T wxConvLocal.Clear(); +#endif } DECLARE_DYNAMIC_CLASS(wxStrConvModule)