fixed Sun CC warning about arg[cv] parameters hiding wxApp members

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35485 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2005-09-13 14:30:18 +00:00
parent 200a992309
commit 8d79ccefda

View File

@ -144,11 +144,11 @@ wxAppConsole::~wxAppConsole()
// initilization/cleanup // initilization/cleanup
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
bool wxAppConsole::Initialize(int& argc, wxChar **argv) bool wxAppConsole::Initialize(int& argcOrig, wxChar **argvOrig)
{ {
// remember the command line arguments // remember the command line arguments
this->argc = argc; argc = argcOrig;
this->argv = argv; argv = argvOrig;
#ifndef __WXPALMOS__ #ifndef __WXPALMOS__
if ( m_appName.empty() && argv ) if ( m_appName.empty() && argv )