diff options
author | Robert Staudinger <robsta@gnome.org> | 2009-08-10 17:46:53 +0200 |
---|---|---|
committer | Robert Staudinger <robsta@gnome.org> | 2009-08-10 17:46:53 +0200 |
commit | 1cbe0728d9a52a03ec3ee39b3021f017e2f3834f (patch) | |
tree | 955f27393fa8ec49d749e16871bf09d920945d39 /ccss-gtk | |
parent | 7a25d5ba06cf4f55aa5ce4d9614eeb6a57376d66 (diff) |
[property] Drop "property_" prefix from vtable members.
Diffstat (limited to 'ccss-gtk')
-rw-r--r-- | ccss-gtk/ccss-gtk-property.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/ccss-gtk/ccss-gtk-property.c b/ccss-gtk/ccss-gtk-property.c index 7b91398..f9ca73e 100644 --- a/ccss-gtk/ccss-gtk-property.c +++ b/ccss-gtk/ccss-gtk-property.c @@ -525,19 +525,19 @@ property_factory (ccss_grammar_t const *grammar, /* Fall back. */ g_return_val_if_fail (_fallback_property_class, false); - g_return_val_if_fail (_fallback_property_class->property_factory, false); - return _fallback_property_class->property_factory (grammar, block, name, - values, user_data); + g_return_val_if_fail (_fallback_property_class->factory, false); + return _fallback_property_class->factory (grammar, block, name, + values, user_data); } static ccss_property_class_t const _properties[] = { { .name = "*", - .property_create = NULL, - .property_destroy = (ccss_property_destroy_f) property_destroy, - .property_convert = (ccss_property_convert_f) property_convert, - .property_factory = property_factory, - .property_inherit = NULL + .create = NULL, + .destroy = (ccss_property_destroy_f) property_destroy, + .convert = (ccss_property_convert_f) property_convert, + .factory = property_factory, + .inherit = NULL }, { .name = NULL } @@ -566,7 +566,7 @@ ccss_gtk_property_set_fallback_class (ccss_property_class_t const *property_clas bool ccss_gtk_property_is_style_property (ccss_property_base_t const *self) { - return self->property_class->property_destroy == + return self->property_class->destroy == (ccss_property_destroy_f) property_destroy; } |