From 2283a22c2d4ef29364569a1b3fac532194cfe0b5 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 22 Jun 1998 21:48:53 +0000 Subject: [PATCH] wxLogWindow::GetOldLog() added git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@120 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/log.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/wx/log.h b/include/wx/log.h index 99ed98ee67..b5e608b77b 100644 --- a/include/wx/log.h +++ b/include/wx/log.h @@ -202,6 +202,9 @@ public: // show/hide the log window void Show(bool bShow = TRUE); + // accessors + wxLog *GetOldLog() const { return m_pOldLog; } + protected: virtual void DoLog(wxLogLevel level, const char *szString); virtual void DoLogString(const char *szString);