]> git.saurik.com Git - wxWidgets.git/blobdiff - src/univ/theme.cpp
remove temportay fix to Makefile.in, now configure .in is fixed
[wxWidgets.git] / src / univ / theme.cpp
index 31f592280a3c0294a90bfe608abb0ea89970ce5b..d110c5bf0bdf4ef91e4c38f8ebbe44ddff5c8b00 100644 (file)
@@ -64,7 +64,7 @@ wxThemeInfo::wxThemeInfo(Constructor c,
     wxThemeInfo *info = ms_allThemes;
     while ( info )
     {
-        if ( name == info->name )
+        if ( name.CmpNoCase(info->name) == 0 )
         {
             return info->ctor();
         }
@@ -100,7 +100,7 @@ wxThemeInfo::wxThemeInfo(Constructor c,
         #if defined(__WXGTK__)
             nameDefTheme = _T("gtk");
         #elif defined(__WXX11__)
-            nameDefTheme = _T("Metal");
+            nameDefTheme = _T("win32");
         #else
             nameDefTheme = _T("win32");
         #endif