Remove private helper #define's

Finish off the second half of 09a830d294.

http://bugzilla.clutter-project.org/show_bug.cgi?id=2596
This commit is contained in:
Jasper St. Pierre
2011-03-03 06:35:46 -05:00
committed by Emmanuele Bassi
parent cfa32659e4
commit 0c576c0c33
37 changed files with 288 additions and 294 deletions

View File

@ -232,9 +232,9 @@ clutter_path_constraint_class_init (ClutterPathConstraintClass *klass)
gobject_class->set_property = clutter_path_constraint_set_property;
gobject_class->get_property = clutter_path_constraint_get_property;
gobject_class->dispose = clutter_path_constraint_dispose;
_clutter_object_class_install_properties (gobject_class,
LAST_PROPERTY,
path_properties);
g_object_class_install_properties (gobject_class,
LAST_PROPERTY,
path_properties);
meta_class->set_actor = clutter_path_constraint_set_actor;
@ -328,7 +328,7 @@ clutter_path_constraint_set_path (ClutterPathConstraint *constraint,
if (constraint->actor != NULL)
clutter_actor_queue_relayout (constraint->actor);
_clutter_notify_by_pspec (G_OBJECT (constraint), path_properties[PROP_PATH]);
g_object_notify_by_pspec (G_OBJECT (constraint), path_properties[PROP_PATH]);
}
/**
@ -374,7 +374,7 @@ clutter_path_constraint_set_offset (ClutterPathConstraint *constraint,
if (constraint->actor != NULL)
clutter_actor_queue_relayout (constraint->actor);
_clutter_notify_by_pspec (G_OBJECT (constraint), path_properties[PROP_OFFSET]);
g_object_notify_by_pspec (G_OBJECT (constraint), path_properties[PROP_OFFSET]);
}
/**