diff options
author | Benjamin Otte <otte@redhat.com> | 2012-01-02 02:22:52 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2012-01-09 18:37:54 +0100 |
commit | 14994e3fc9fd86343978dd21fe2b32008c7863e9 (patch) | |
tree | c6c1803a6112be86c36a59c4b56e263897e9fe5f /gtk/gtkcssshorthandproperty.c | |
parent | 01548bfcbe71cb2b211fd5878c2dc0c3579c277e (diff) | |
download | gtk+-14994e3fc9fd86343978dd21fe2b32008c7863e9.tar.gz |
styleproperty: Remove _gtk_style_property_unpack()
The function is no longer needed in public API
Diffstat (limited to 'gtk/gtkcssshorthandproperty.c')
-rw-r--r-- | gtk/gtkcssshorthandproperty.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkcssshorthandproperty.c b/gtk/gtkcssshorthandproperty.c index bc0e802eed..79fb1d24f0 100644 --- a/gtk/gtkcssshorthandproperty.c +++ b/gtk/gtkcssshorthandproperty.c @@ -71,7 +71,7 @@ _gtk_css_shorthand_property_assign (GtkStyleProperty *property, GParameter *parameters; guint i, n_parameters; - parameters = _gtk_style_property_unpack (property, value, &n_parameters); + parameters = property->unpack_func (value, &n_parameters); for (i = 0; i < n_parameters; i++) { @@ -196,7 +196,7 @@ gtk_css_shorthand_property_parse (GtkCssShorthandProperty *shorthand, return FALSE; } - parameters = _gtk_style_property_unpack (property, &val, &n_parameters); + parameters = property->unpack_func (&val, &n_parameters); g_value_unset (&val); for (i = 0; i < shorthand->subproperties->len; i++) |