From 9c13e5ef23356950168c01bd39563b74a46a785e Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 4 Aug 2003 02:00:02 +0000 Subject: [PATCH] fixed non GUI cmd line options git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22563 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/appcmn.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/common/appcmn.cpp b/src/common/appcmn.cpp index d70ff7bc23..4e2eb164d1 100644 --- a/src/common/appcmn.cpp +++ b/src/common/appcmn.cpp @@ -147,6 +147,9 @@ void wxAppBase::CleanUp() void wxAppBase::OnInitCmdLine(wxCmdLineParser& parser) { + // first add the standard non GUI options + wxAppConsole::OnInitCmdLine(parser); + // the standard command line options static const wxCmdLineEntryDesc cmdLineGUIDesc[] = { -- 2.45.2