don't crash in Get() if there is no wxApp (closes 1236514)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34993 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2005-07-29 14:15:26 +00:00
parent b1e0f4ed69
commit 81f9c57504

View File

@@ -47,7 +47,10 @@ static wxStandardPaths gs_stdPaths;
/* static */
wxStandardPathsBase& wxStandardPathsBase::Get()
{
return wxTheApp->GetTraits()->GetStandardPaths();
wxAppTraits * const traits = wxTheApp ? wxTheApp->GetTraits() : NULL;
wxCHECK_MSG( traits, gs_stdPaths, _T("create wxApp before calling this") );
return traits->GetStandardPaths();
}
wxStandardPathsBase& wxAppTraitsBase::GetStandardPaths()