snap-constraint: Fix typo that broke the get_edges() method

We were declaring a get_edges() method, but the definition was called
get_edge().
This commit is contained in:
Emmanuele Bassi 2012-03-07 12:31:25 +00:00
parent 3a86d88b43
commit 4da1c3efb8
2 changed files with 4 additions and 4 deletions

View File

@ -546,9 +546,9 @@ clutter_snap_constraint_set_edges (ClutterSnapConstraint *constraint,
* Since: 1.6 * Since: 1.6
*/ */
void void
clutter_snap_constraint_get_edge (ClutterSnapConstraint *constraint, clutter_snap_constraint_get_edges (ClutterSnapConstraint *constraint,
ClutterSnapEdge *from_edge, ClutterSnapEdge *from_edge,
ClutterSnapEdge *to_edge) ClutterSnapEdge *to_edge)
{ {
g_return_if_fail (CLUTTER_IS_SNAP_CONSTRAINT (constraint)); g_return_if_fail (CLUTTER_IS_SNAP_CONSTRAINT (constraint));

View File

@ -1002,7 +1002,7 @@ clutter_shader_set_is_enabled
clutter_shader_set_uniform clutter_shader_set_uniform
clutter_shader_set_vertex_source clutter_shader_set_vertex_source
clutter_shader_type_get_type clutter_shader_type_get_type
clutter_snap_constraint_get_edge clutter_snap_constraint_get_edges
clutter_snap_constraint_get_offset clutter_snap_constraint_get_offset
clutter_snap_constraint_get_source clutter_snap_constraint_get_source
clutter_snap_constraint_get_type clutter_snap_constraint_get_type