Fix another error in minimal wxGTK buildbot build.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64944
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
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;
}
break;
}
- wxASSERT(font.IsOk() && wxFontEnumerator::IsValidFacename(font.GetFaceName()));
+ wxASSERT( font.IsOk() );
return font;
}