From: Václav Slavík Date: Thu, 3 May 2007 13:21:54 +0000 (+0000) Subject: fixed reverted #if condition around wxDoLogTraceWchar X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/8bd37efca7eb0de7cdf72167e138f9cabd9b6750?ds=inline fixed reverted #if condition around wxDoLogTraceWchar git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45784 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/log.cpp b/src/common/log.cpp index 28ebbaa0cd..37a37b80ed 100644 --- a/src/common/log.cpp +++ b/src/common/log.cpp @@ -315,7 +315,7 @@ void wxDoLogVerboseUtf8(const char *format, ...) } } -#if wxUSE_UTF8_LOCALE_ONLY +#if !wxUSE_UTF8_LOCALE_ONLY void wxDoLogTraceWchar(wxTraceMask mask, const wxChar *format, ...) { va_list argptr; @@ -323,7 +323,7 @@ void wxDoLogVerboseUtf8(const char *format, ...) wxVLogTrace(mask, format, argptr); va_end(argptr); } -#endif // wxUSE_UTF8_LOCALE_ONLY +#endif // !wxUSE_UTF8_LOCALE_ONLY #if wxUSE_UNICODE_UTF8 void wxDoLogTraceUtf8(wxTraceMask mask, const char *format, ...)