restore setting m_appName broken by recent change (fixes bug 1921954)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52651 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2008-03-21 16:21:51 +00:00
parent f016d3b424
commit a7d980f639

View File

@@ -167,7 +167,7 @@ wxAppConsoleBase::~wxAppConsoleBase()
// initilization/cleanup // initilization/cleanup
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
bool wxAppConsoleBase::Initialize(int& WXUNUSED(argc), wxChar **WXUNUSED(argv)) bool wxAppConsoleBase::Initialize(int& WXUNUSED(argc), wxChar **argv)
{ {
#if wxUSE_INTL #if wxUSE_INTL
GetTraits()->SetLocale(); GetTraits()->SetLocale();
@@ -178,7 +178,7 @@ bool wxAppConsoleBase::Initialize(int& WXUNUSED(argc), wxChar **WXUNUSED(argv))
#endif #endif
#ifndef __WXPALMOS__ #ifndef __WXPALMOS__
if ( m_appName.empty() && argv ) if ( m_appName.empty() && argv && argv[0] )
{ {
// the application name is, by default, the name of its executable file // the application name is, by default, the name of its executable file
wxFileName::SplitPath(argv[0], NULL, &m_appName, NULL); wxFileName::SplitPath(argv[0], NULL, &m_appName, NULL);