styleproperties: Rename enum value

I want to use that same enum value elsewhere.
This commit is contained in:
Benjamin Otte
2011-05-31 12:18:55 +02:00
parent fd4ffbb6da
commit d59081310b

View File

@ -363,7 +363,7 @@ gtk_style_properties_lookup_property (const gchar *property_name,
/* GParamSpec functionality */ /* GParamSpec functionality */
enum { enum {
GTK_STYLE_PROPERTY_INHERIT = 1 << G_PARAM_USER_SHIFT GTK_STYLE_PARAM_INHERIT = 1 << G_PARAM_USER_SHIFT
}; };
/** /**
@ -387,9 +387,9 @@ gtk_style_param_set_inherit (GParamSpec *pspec,
gboolean inherit) gboolean inherit)
{ {
if (inherit) if (inherit)
pspec->flags |= GTK_STYLE_PROPERTY_INHERIT; pspec->flags |= GTK_STYLE_PARAM_INHERIT;
else else
pspec->flags &= ~GTK_STYLE_PROPERTY_INHERIT; pspec->flags &= ~GTK_STYLE_PARAM_INHERIT;
} }
/** /**
@ -405,7 +405,7 @@ gtk_style_param_set_inherit (GParamSpec *pspec,
gboolean gboolean
gtk_style_param_get_inherit (GParamSpec *pspec) gtk_style_param_get_inherit (GParamSpec *pspec)
{ {
return (pspec->flags & GTK_STYLE_PROPERTY_INHERIT) ? TRUE : FALSE; return (pspec->flags & GTK_STYLE_PARAM_INHERIT) ? TRUE : FALSE;
} }
/* GtkStyleProperties methods */ /* GtkStyleProperties methods */