From: Václav Slavík Date: Fri, 29 Sep 2006 12:49:36 +0000 (+0000) Subject: fixed IMPLEMENT_APP to work even if compiled with --with-themes and win32 or gtk... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/4f2097b6efc095788df406a2db7b0b3cf0ed75ad 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 --- diff --git a/src/univ/theme.cpp b/src/univ/theme.cpp index 2eb31fb1d4..aa8be8e2d9 100644 --- a/src/univ/theme.cpp +++ b/src/univ/theme.cpp @@ -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);