const wxWX2MBbuf buf = strWithLF.mb_str();
if ( buf )
- fprintf(stderr, "%s", (const char*) buf);
+ fprintf(m_fp, "%s", (const char*) buf);
else // print at least something
- fprintf(stderr, "%s", (const char*) strWithLF.ToAscii());
+ fprintf(m_fp, "%s", (const char*) strWithLF.ToAscii());
+
+ fflush(m_fp);
}
// ----------------------------------------------------------------------------
out.Replace(wxT("\t"), wxT(" "));
- ::wxLogMessage(wxT("%s"), out.c_str());
+ wxLogMessage(wxT("%s"), out.c_str());
}
#endif // wxUSE_BASE