Build fixes for wxUSE_UNICODE==0

This commit is contained in:
Paul Cornett
2017-11-12 09:35:12 -08:00
parent cdb9436975
commit 142004884f
2 changed files with 5 additions and 1 deletions

View File

@@ -396,7 +396,11 @@ bool wxApp::Initialize(int& argc_, wxChar **argv_)
// update internal arg[cv] as GTK+ may have removed processed options:
this->argc = argc_;
#if wxUSE_UNICODE
this->argv.Init(argc_, argv_);
#else
this->argv = argv_;
#endif
if ( m_traits )
{