update IfaceCheckLog definition after wxLog::DoLogXXX() changes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61349 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2009-07-08 16:06:46 +00:00
parent ba3af1010d
commit 74e67db795

View File

@@ -75,15 +75,12 @@ class IfaceCheckLog : public wxLog
public:
IfaceCheckLog() {}
void DoLog(wxLogLevel, const wxString& msg, time_t)
virtual void DoLogText(const wxString& msg)
{
// send all messages to stdout (normal behaviour is to sent them to stderr)
wxPrintf(msg);
wxPrintf("\n");
Flush();
wxPuts(msg);
fflush(stdout);
}
wxSUPPRESS_DOLOG_HIDE_WARNING()
};
class IfaceCheckApp : public wxAppConsole