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:
@@ -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()
|
||||
|
Reference in New Issue
Block a user