X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d68d85908b4f6073ae1c100abe3d9469fcd451d9..06d4c4d65aa052a7586dd42bf0d558c46699b564:/src/common/log.cpp?ds=sidebyside diff --git a/src/common/log.cpp b/src/common/log.cpp index c17db339d9..e211345864 100644 --- a/src/common/log.cpp +++ b/src/common/log.cpp @@ -166,6 +166,7 @@ void wxSafeShowMessage(const wxString& title, const wxString& text) ::MessageBox(NULL, text, title, MB_OK | MB_ICONSTOP); #else wxFprintf(stderr, _T("%s: %s\n"), title.c_str(), text.c_str()); + fflush(stderr); #endif }