class WXDLLEXPORT wxLogWindow : public wxLog
{
public:
- wxLogWindow(const wxTString& strTitle);
+ wxLogWindow(const wxTString& strTitle, bool bShow = TRUE);
~wxLogWindow();
// 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);