Fix annotations for signal arguments
The introspection scanner started warning about mismatched arguments number.
This commit is contained in:
parent
575b77210b
commit
2e905dd9d4
2 changed files with 8 additions and 0 deletions
|
@ -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] =
|
||||||
|
|
|
@ -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.
|
||||||
|
|
Loading…
Add table
Reference in a new issue