From 1e085eeb894ad18e2d33b2da78509e9576f4f6bd Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 23 Apr 2007 20:17:52 +0000 Subject: [PATCH] tiny change to make g++ 3.3 compile the latest version git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45608 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/gtk/app.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gtk/app.cpp b/src/gtk/app.cpp index ff408b679d..464b36b665 100644 --- a/src/gtk/app.cpp +++ b/src/gtk/app.cpp @@ -468,7 +468,7 @@ bool wxApp::Initialize(int& argc, wxChar **argv) for ( int i = 0; i < argc; i++ ) { // leave just the names of the options with values - const wxString str(wxString(argv[i]).BeforeFirst('=')); + const wxString str = wxString(argv[i]).BeforeFirst('='); for ( size_t j = 0; j < opt.size(); j++ ) { -- 2.45.2