From: Václav Slavík Date: Sun, 4 Aug 2002 15:40:55 +0000 (+0000) Subject: wxCmdLineParser's output goes to stderr, not message box, under Unix X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/bdf7416759df8b32ffdf9a7588fa5e87ded020df wxCmdLineParser's output goes to stderr, not message box, under Unix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16363 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/appcmn.cpp b/src/common/appcmn.cpp index 1018cbae7c..2398dad313 100644 --- a/src/common/appcmn.cpp +++ b/src/common/appcmn.cpp @@ -191,8 +191,15 @@ int wxAppBase::FilterEvent(wxEvent& WXUNUSED(event)) void wxAppBase::DoInit() { - if(wxMessageOutput::Get()) return; -#if wxUSE_GUI + if (wxMessageOutput::Get()) + return; + + // NB: The standard way of printing help on command line arguments (app --help) + // is (according to common practice): + // - console apps: to stderr (on any platform) + // - GUI apps: stderr on Unix platforms (!) + // message box under Windows and others +#if wxUSE_GUI && !defined(__UNIX__) #ifdef __WXMOTIF__ wxMessageOutput::Set(new wxMessageOutputLog); #else