diff options
author | Benjamin Otte <otte@redhat.com> | 2012-11-25 03:34:08 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2012-11-25 03:43:28 +0100 |
commit | fb643c1c1255a867ec37d5e6d087782295cbba69 (patch) | |
tree | 066fd2949ea0b69ecf58ebb296023b41fe49eba8 /gtk/gtkstyleproperties.h | |
parent | df25349d63392718e720f57a0cfdd4974eec2d0d (diff) | |
download | gtk+-fb643c1c1255a867ec37d5e6d087782295cbba69.tar.gz |
symboliccolor: Deprecate
Symbolic colors are an implementation detail of the CSS engine and have
been superceded by GtkCssColorValue. We don't want them clobbering the
public API. In particular because the only use I could find in the
public API is people using it to shade colors.
Diffstat (limited to 'gtk/gtkstyleproperties.h')
-rw-r--r-- | gtk/gtkstyleproperties.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gtk/gtkstyleproperties.h b/gtk/gtkstyleproperties.h index cf644d9c13..eb8ff708f2 100644 --- a/gtk/gtkstyleproperties.h +++ b/gtk/gtkstyleproperties.h @@ -74,9 +74,11 @@ gboolean gtk_style_properties_lookup_property (const gchar *proper GtkStyleProperties * gtk_style_properties_new (void); +GDK_DEPRECATED_IN_3_8 void gtk_style_properties_map_color (GtkStyleProperties *props, const gchar *name, GtkSymbolicColor *color); +GDK_DEPRECATED_IN_3_8 GtkSymbolicColor * gtk_style_properties_lookup_color (GtkStyleProperties *props, const gchar *name); |