]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/settings.cpp
Fix button order in wxGTK wxMessageDialog and wxStdDialogButtonSizer.
[wxWidgets.git] / src / gtk / settings.cpp
index 7de06c56e34fdf9535462bc6bb9776eff7adec82..35f0649a375f602ff8e443a2ba81b8e5b18e3266 100644 (file)
@@ -258,11 +258,13 @@ wxFont wxSystemSettingsNative::GetFont( wxSystemFont index )
                 info.description = ButtonStyle()->font_desc;
                 gs_fontSystem = wxFont(info);
 
+#if wxUSE_FONTENUM
                 // (try to) heal the default font (on some common systems e.g. Ubuntu
                 // it's "Sans Serif" but the real font is called "Sans"):
                 if (!wxFontEnumerator::IsValidFacename(gs_fontSystem.GetFaceName()) &&
                     gs_fontSystem.GetFaceName() == "Sans Serif")
                     gs_fontSystem.SetFaceName("Sans");
+#endif // wxUSE_FONTENUM
 
                 info.description = NULL;
             }
@@ -273,7 +275,7 @@ wxFont wxSystemSettingsNative::GetFont( wxSystemFont index )
             break;
     }
 
-    wxASSERT(font.IsOk() && wxFontEnumerator::IsValidFacename(font.GetFaceName()));
+    wxASSERT( font.IsOk() );
 
     return font;
 }