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
This commit is contained in:
Vadim Zeitlin
2007-04-23 20:17:52 +00:00
parent 353a4edc6e
commit 1e085eeb89

View File

@@ -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++ )
{