avoid deprecated gtk_style_context_get_font(), closes #15697

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@75284 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Paul Cornett
2013-11-24 18:07:20 +00:00
parent b593863003
commit 2203c7e436
2 changed files with 8 additions and 4 deletions

View File

@@ -428,8 +428,8 @@ wxFont wxSystemSettingsNative::GetFont( wxSystemFont index )
wxNativeFontInfo info;
#ifdef __WXGTK3__
GtkStyleContext* sc = gtk_widget_get_style_context(ButtonWidget());
info.description = const_cast<PangoFontDescription*>(
gtk_style_context_get_font(sc, GTK_STATE_FLAG_NORMAL));
gtk_style_context_get(sc, GTK_STATE_FLAG_NORMAL,
GTK_STYLE_PROPERTY_FONT, &info.description, NULL);
#else
info.description = ButtonStyle()->font_desc;
#endif
@@ -440,10 +440,14 @@ wxFont wxSystemSettingsNative::GetFont( wxSystemFont index )
// 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
#ifndef __WXGTK3__
info.description = NULL;
#endif
}
font = gs_fontSystem;
break;