X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/82ef81ed9c797178d9868823097e272bfddc4c93..b9efe021b554fa3967d1442cf758435c5cd5ae8f:/src/common/msgout.cpp diff --git a/src/common/msgout.cpp b/src/common/msgout.cpp index 77c19feb6d..84bb0547e4 100755 --- a/src/common/msgout.cpp +++ b/src/common/msgout.cpp @@ -88,6 +88,33 @@ wxMessageOutput* wxMessageOutput::Set(wxMessageOutput* msgout) return old; } +// ---------------------------------------------------------------------------- +// wxMessageOutputBest +// ---------------------------------------------------------------------------- + +void wxMessageOutputBest::Printf(const wxChar* format, ...) +{ + va_list args; + va_start(args, format); + wxString out; + + out.PrintfV(format, args); + va_end(args); + +#ifdef __WINDOWS__ + // check if we're running in a console + HANDLE hStdErr = ::GetStdHandle(STD_ERROR_HANDLE); + if ( !hStdErr || hStdErr == INVALID_HANDLE_VALUE ) + { + ::MessageBox(NULL, out, _T("wxWidgets"), MB_ICONINFORMATION | MB_OK); + } + else +#endif // __WINDOWS__/!__WINDOWS__ + { + fprintf(stderr, "%s", (const char*) out.mb_str()); + } +} + // ---------------------------------------------------------------------------- // wxMessageOutputStderr // ----------------------------------------------------------------------------