summaryrefslogtreecommitdiff
path: root/gtk/gtkstylepropertiesprivate.h
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2011-05-21 21:17:08 +0200
committerBenjamin Otte <otte@redhat.com>2011-05-22 01:25:16 +0200
commit73c39f5b1681f2efe5ddf3fb3c7fa6e071ac6039 (patch)
tree318c1f0a1d6998308af08118d651efcccd421725 /gtk/gtkstylepropertiesprivate.h
parentb67ae42ecd4a8bbd0f1e36b75569ed5b0454ad7d (diff)
downloadgtk+-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.h16
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