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:
@@ -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
|
||||
|
Reference in New Issue
Block a user