diff options
author | Benjamin Otte <otte@redhat.com> | 2012-12-06 02:55:22 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2012-12-06 02:57:19 +0100 |
commit | 9ae96491886716ba56ba87442dd9a93dcf21e027 (patch) | |
tree | 88fd8ef977b8bc091cdae3bde1889ff65d7d11d6 /gtk/gtkthemingengine.h | |
parent | 82a61069200f72dd23cb82ff6d7877e1bf43beb3 (diff) | |
download | gtk+-9ae96491886716ba56ba87442dd9a93dcf21e027.tar.gz |
stylecontext: Deprecate gtk_style_context_get_font()
This is for a very simple reason: The getter is returning a const value
and the font isn't const anymore. So we need to store the font
description somewhere but we can't reuse it as it's changing all the
time (yay animations, yay inherited values). Sucks.
So keep the hack in here but deprecate the function.
Diffstat (limited to 'gtk/gtkthemingengine.h')
-rw-r--r-- | gtk/gtkthemingengine.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gtk/gtkthemingengine.h b/gtk/gtkthemingengine.h index 0bdc3a13cf..13e1927c7e 100644 --- a/gtk/gtkthemingengine.h +++ b/gtk/gtkthemingengine.h @@ -249,6 +249,7 @@ void gtk_theming_engine_get_margin (GtkThemingEngine *engine, GtkStateFlags state, GtkBorder *margin); +GDK_DEPRECATED_IN_3_8_FOR(gtk_theming_engine_get) const PangoFontDescription * gtk_theming_engine_get_font (GtkThemingEngine *engine, GtkStateFlags state); |