From: Vadim Zeitlin Date: Thu, 9 Jul 2009 12:00:55 +0000 (+0000) Subject: compilation fix for !WXWIN_COMPATIBILITY_2_8 build X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/fbbc4e8f80430ba7b747d8cb4716a4d0dbc76971 compilation fix for !WXWIN_COMPATIBILITY_2_8 build git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61352 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/log.cpp b/src/common/log.cpp index 4ee474bf00..eea84cbf12 100644 --- a/src/common/log.cpp +++ b/src/common/log.cpp @@ -694,6 +694,8 @@ void wxLog::DoLogText(const wxString& WXUNUSED(msg)) #endif // WXWIN_COMPATIBILITY_2_8 } +#if WXWIN_COMPATIBILITY_2_8 + void wxLog::DoLog(wxLogLevel WXUNUSED(level), const char *szString, time_t t) { DoLogString(szString, t); @@ -704,6 +706,8 @@ void wxLog::DoLog(wxLogLevel WXUNUSED(level), const wchar_t *wzString, time_t t) DoLogString(wzString, t); } +#endif // WXWIN_COMPATIBILITY_2_8 + // ---------------------------------------------------------------------------- // wxLog active target management // ----------------------------------------------------------------------------