From dcc40ba510c46c55bf35e51347957a107517ecfd Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 1 Sep 2006 12:46:17 +0000 Subject: [PATCH] compilation fix for WXWIN_COMPATIBILITY_2_6==0 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40946 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/log.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/common/log.cpp b/src/common/log.cpp index affdec61cb..c4d3ef212b 100644 --- a/src/common/log.cpp +++ b/src/common/log.cpp @@ -340,11 +340,15 @@ void wxLog::OnLog(wxLogLevel level, const wxChar *szString, time_t t) } // deprecated function +#if WXWIN_COMPATIBILITY_2_6 + wxChar *wxLog::SetLogBuffer(wxChar * WXUNUSED(buf), size_t WXUNUSED(size)) { return NULL; } +#endif // WXWIN_COMPATIBILITY_2_6 + wxLog *wxLog::GetActiveTarget() { if ( ms_bAutoCreate && ms_pLogger == NULL ) { -- 2.45.2