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:
parent
ba3af1010d
commit
74e67db795
1 changed files with 3 additions and 6 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue