From 4f2097b6efc095788df406a2db7b0b3cf0ed75ad Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Fri, 29 Sep 2006 12:49:36 +0000 Subject: [PATCH] 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 --- src/univ/theme.cpp | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) 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); -- 2.45.2