From 213cd30cebfb58df1298a13adf528755aad6cdfa Mon Sep 17 00:00:00 2001 From: Elliot Smith Date: Thu, 24 Jun 2010 11:23:50 +0100 Subject: [PATCH] docs: Fix example code in BindingPool The code sample in the gtk-doc annotations for ClutterBindingPool shows the arguments in the wrong order. http://bugzilla.clutter-project.org/show_bug.cgi?id=2133 Signed-off-by: Emmanuele Bassi --- clutter/clutter-binding-pool.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/clutter/clutter-binding-pool.c b/clutter/clutter-binding-pool.c index 8a3c31c63..dc6c2dfa4 100644 --- a/clutter/clutter-binding-pool.c +++ b/clutter/clutter-binding-pool.c @@ -81,9 +81,10 @@ * * mask of the key event. the returned value can be directly * * used to signal that the actor has handled the event. * */ - * return clutter_binding_pool_activate (pool, G_OBJECT (actor), + * return clutter_binding_pool_activate (pool, * key_event->keyval, - * key_event->modifier_state); + * key_event->modifier_state, + * G_OBJECT (actor)); * ]| * * The clutter_binding_pool_activate() function will return %FALSE if