Fix typo in the :clone getter method

The :clone property getter method, clutter_clone_get_source(), was
defined using the wrong name of clutter_clone_get_clone_source().
This commit is contained in:
Emmanuele Bassi 2009-01-27 20:06:58 +00:00
parent bba85d47f9
commit b08a011512

View File

@ -317,7 +317,7 @@ clutter_clone_set_source (ClutterClone *clone,
* Since: 1.0
*/
ClutterActor *
clutter_clone_get_clone_source (ClutterClone *clone)
clutter_clone_get_source (ClutterClone *clone)
{
g_return_val_if_fail (CLUTTER_IS_CLONE (clone), NULL);