fixed IMPLEMENT_APP to work even if compiled with --with-themes and win32 or gtk themes are not compiled in

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41508 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík 2006-09-29 12:49:36 +00:00
parent ee92941afc
commit 4f2097b6ef

View File

@ -95,13 +95,9 @@ wxThemeInfo::wxThemeInfo(Constructor c,
}
else // use native theme by default
{
#if defined(__WXGTK__)
nameDefTheme = _T("gtk");
#elif defined(__WXX11__)
nameDefTheme = _T("win32");
#else
nameDefTheme = _T("win32");
#endif
#ifdef wxUNIV_DEFAULT_THEME
nameDefTheme = _T(wxSTRINGIZE(wxUNIV_DEFAULT_THEME));
#endif
}
wxTheme *theme = Create(nameDefTheme);