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
This commit is contained in:
Vadim Zeitlin
2009-07-09 12:00:55 +00:00
parent 74e67db795
commit fbbc4e8f80

View File

@@ -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
// ----------------------------------------------------------------------------