summaryrefslogtreecommitdiff
path: root/gtk/gtkstylepropertyprivate.h
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2011-05-26 00:09:26 +0200
committerBenjamin Otte <otte@redhat.com>2011-06-02 02:03:50 +0200
commit35488f58461d53a92992cfeff686e5a2c972500d (patch)
treeb6722fe82a80c2b0e5a30493d2583954e3a88f1e /gtk/gtkstylepropertyprivate.h
parent3e7f74c456996bb760031d3b66d5fd6c8665d2a9 (diff)
downloadgtk+-35488f58461d53a92992cfeff686e5a2c972500d.tar.gz
css: Rename struct variable
I want to add parse_func as something different soon.
Diffstat (limited to 'gtk/gtkstylepropertyprivate.h')
-rw-r--r--gtk/gtkstylepropertyprivate.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkstylepropertyprivate.h b/gtk/gtkstylepropertyprivate.h
index 8ffe0adf8b..ba9fd3f4b3 100644
--- a/gtk/gtkstylepropertyprivate.h
+++ b/gtk/gtkstylepropertyprivate.h
@@ -35,7 +35,7 @@ typedef void (* GtkStylePackFunc) (GValue
struct _GtkStyleProperty
{
GParamSpec *pspec;
- GtkStylePropertyParser parse_func;
+ GtkStylePropertyParser property_parse_func;
GtkStyleUnpackFunc unpack_func;
GtkStylePackFunc pack_func;
};
@@ -43,7 +43,7 @@ struct _GtkStyleProperty
const GtkStyleProperty * _gtk_style_property_lookup (const char *name);
void _gtk_style_property_register (GParamSpec *pspec,
- GtkStylePropertyParser parse_func,
+ GtkStylePropertyParser property_parse_func,
GtkStyleUnpackFunc unpack_func,
GtkStylePackFunc pack_func);