more intelligence to avoid false warnings

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56718 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi
2008-11-09 16:30:50 +00:00
parent 7f8fae980f
commit e2d1c0e72b
2 changed files with 19 additions and 7 deletions

View File

@@ -75,8 +75,9 @@ class IfaceCheckLog : public wxLog
public:
IfaceCheckLog() {}
void DoLog(wxLogLevel level, const wxString& msg, time_t stamp)
void DoLog(wxLogLevel, const wxString& msg, time_t)
{
// send all messages to stdout (normal behaviour is to sent them to stderr)
wxPrintf(msg);
wxPrintf("\n");
Flush();