mirror of
https://github.com/brl/mutter.git
synced 2025-02-02 14:53:03 +00:00
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 <ebassi@linux.intel.com>
This commit is contained in:
parent
4e5c84ebc5
commit
213cd30ceb
@ -81,9 +81,10 @@
|
|||||||
* * mask of the key event. the returned value can be directly
|
* * mask of the key event. the returned value can be directly
|
||||||
* * used to signal that the actor has handled the event.
|
* * 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->keyval,
|
||||||
* key_event->modifier_state);
|
* key_event->modifier_state,
|
||||||
|
* G_OBJECT (actor));
|
||||||
* ]|
|
* ]|
|
||||||
*
|
*
|
||||||
* The clutter_binding_pool_activate() function will return %FALSE if
|
* The clutter_binding_pool_activate() function will return %FALSE if
|
||||||
|
Loading…
x
Reference in New Issue
Block a user