summaryrefslogtreecommitdiff
path: root/gtk/gtkstylecontextprivate.h
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2012-03-31 05:42:28 +0200
committerBenjamin Otte <otte@redhat.com>2012-04-17 08:59:15 +0200
commit31565139bacde73f519f8e5a4c40e98b53100313 (patch)
tree96c880eef0f00543018c3bba960bd17364dce064 /gtk/gtkstylecontextprivate.h
parent5d8789680ec645f93ccfbde88b0a2fee5dfbf00c (diff)
downloadgtk+-31565139bacde73f519f8e5a4c40e98b53100313.tar.gz
stylecontext: Convert _gtk_style_context_peek_property()
Take the property id instead of the name.
Diffstat (limited to 'gtk/gtkstylecontextprivate.h')
-rw-r--r--gtk/gtkstylecontextprivate.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkstylecontextprivate.h b/gtk/gtkstylecontextprivate.h
index 759929ec62..9feaf78fb3 100644
--- a/gtk/gtkstylecontextprivate.h
+++ b/gtk/gtkstylecontextprivate.h
@@ -27,9 +27,9 @@ G_BEGIN_DECLS
void _gtk_style_context_set_widget (GtkStyleContext *context,
GtkWidget *widget);
GtkCssValue * _gtk_style_context_peek_property (GtkStyleContext *context,
- const char *property_name);
+ guint property_id);
double _gtk_style_context_get_number (GtkStyleContext *context,
- const char *property_name,
+ guint property_id,
double one_hundred_percent);
const GValue * _gtk_style_context_peek_style_property (GtkStyleContext *context,
GType widget_type,