1
0
Fork 0

Fix annotations for signal arguments

The introspection scanner started warning about mismatched arguments
number.
This commit is contained in:
Emmanuele Bassi 2013-07-03 13:13:41 +01:00
parent 575b77210b
commit 2e905dd9d4
2 changed files with 8 additions and 0 deletions

View file

@ -8303,10 +8303,14 @@ clutter_actor_class_init (ClutterActorClass *klass)
/** /**
* ClutterActor::touch-event: * ClutterActor::touch-event:
* @actor: a #ClutterActor * @actor: a #ClutterActor
* @event: a #ClutterEvent
* *
* The ::touch-event signal is emitted each time a touch * The ::touch-event signal is emitted each time a touch
* begin/end/update/cancel event. * begin/end/update/cancel event.
* *
* Return value: %CLUTTER_EVENT_STOP if the event has been handled by
* the actor, or %CLUTTER_EVENT_PROPAGATE to continue the emission.
*
* Since: 1.12 * Since: 1.12
*/ */
actor_signals[TOUCH_EVENT] = actor_signals[TOUCH_EVENT] =

View file

@ -649,6 +649,10 @@ clutter_x11_texture_pixmap_class_init (ClutterX11TexturePixmapClass *klass)
/** /**
* ClutterX11TexturePixmap::update-area: * ClutterX11TexturePixmap::update-area:
* @texture: the object which received the signal * @texture: the object which received the signal
* @x: X coordinate of the area to update
* @y: Y coordinate of the area to update
* @width: width of the area to update
* @height: height of the area to update
* *
* The ::update-area signal is emitted to ask the texture to update its * The ::update-area signal is emitted to ask the texture to update its
* content from its source pixmap. * content from its source pixmap.