git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34993
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
/* static */
wxStandardPathsBase& wxStandardPathsBase::Get()
{
/* 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()
}
wxStandardPathsBase& wxAppTraitsBase::GetStandardPaths()