diff options
author | Benjamin Otte <otte@redhat.com> | 2011-05-21 21:17:08 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2011-05-22 01:25:16 +0200 |
commit | 73c39f5b1681f2efe5ddf3fb3c7fa6e071ac6039 (patch) | |
tree | 318c1f0a1d6998308af08118d651efcccd421725 /gtk/gtkstylepropertiesprivate.h | |
parent | b67ae42ecd4a8bbd0f1e36b75569ed5b0454ad7d (diff) | |
download | gtk+-73c39f5b1681f2efe5ddf3fb3c7fa6e071ac6039.tar.gz |
styleproperties: Add _gtk_style_properties_set_property_by_property()
... as a replacement for _gtk_style_properties_set_property_by_pspec().
We'll need that to handle shorthands.
Diffstat (limited to 'gtk/gtkstylepropertiesprivate.h')
-rw-r--r-- | gtk/gtkstylepropertiesprivate.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gtk/gtkstylepropertiesprivate.h b/gtk/gtkstylepropertiesprivate.h index a75da4405b..bbb5d81fbf 100644 --- a/gtk/gtkstylepropertiesprivate.h +++ b/gtk/gtkstylepropertiesprivate.h @@ -25,15 +25,15 @@ G_BEGIN_DECLS -const GValue * _gtk_style_properties_peek_property (GtkStyleProperties *props, - const gchar *prop_name, - GtkStateFlags state, - const GtkStyleProperty **property); +const GValue * _gtk_style_properties_peek_property (GtkStyleProperties *props, + const gchar *prop_name, + GtkStateFlags state, + const GtkStyleProperty **property); -void _gtk_style_properties_set_property_by_pspec (GtkStyleProperties *props, - GParamSpec *pspec, - GtkStateFlags state, - const GValue *value); +void _gtk_style_properties_set_property_by_property (GtkStyleProperties *props, + const GtkStyleProperty *property, + GtkStateFlags state, + const GValue *value); G_END_DECLS |