diff options
author | Benjamin Otte <otte@redhat.com> | 2012-11-30 22:45:20 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2012-11-30 22:45:20 +0100 |
commit | be535139540533a6741fd859b77867e42ddccee0 (patch) | |
tree | 6515ef13133a043b64e9d721e0bf799b0ca4486b /gtk/gtkstyleproperties.h | |
parent | fc67f0d4f816f6dfbd4593c4aaa2d60f6673dbdf (diff) | |
download | gtk+-be535139540533a6741fd859b77867e42ddccee0.tar.gz |
API: Deprecate functions to register custom CSS properties
We should slowly transition code to using the GTK-provided CSS. So here
we go.
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 eb8ff708f2..7237361e2d 100644 --- a/gtk/gtkstyleproperties.h +++ b/gtk/gtkstyleproperties.h @@ -66,8 +66,10 @@ typedef gboolean (* GtkStylePropertyParser) (const gchar *string, GType gtk_style_properties_get_type (void) G_GNUC_CONST; /* Next 2 are implemented in gtkcsscustomproperty.c */ +GDK_DEPRECATED_IN_3_8 void gtk_style_properties_register_property (GtkStylePropertyParser parse_func, GParamSpec *pspec); +GDK_DEPRECATED_IN_3_8 gboolean gtk_style_properties_lookup_property (const gchar *property_name, GtkStylePropertyParser *parse_func, GParamSpec **pspec); |