docs: Fix ClutterPanAction signal annotation

Signals are defined as <ClassName>::<signal-name>; a single colon is
used for properties.
This commit is contained in:
Emmanuele Bassi 2012-10-08 09:26:32 +01:00
parent 219d0efcc6
commit 57956461dc

View File

@ -508,7 +508,7 @@ clutter_pan_action_class_init (ClutterPanActionClass *klass)
pan_props); pan_props);
/** /**
* ClutterPanAction:pan: * ClutterPanAction::pan:
* @action: the #ClutterPanAction that emitted the signal * @action: the #ClutterPanAction that emitted the signal
* @actor: the #ClutterActor attached to the @action * @actor: the #ClutterActor attached to the @action
* @is_interpolated: if the event is the result of interpolating * @is_interpolated: if the event is the result of interpolating
@ -536,7 +536,7 @@ clutter_pan_action_class_init (ClutterPanActionClass *klass)
G_TYPE_BOOLEAN); G_TYPE_BOOLEAN);
/** /**
* ClutterPanAction:pan-stopped: * ClutterPanAction::pan-stopped:
* @action: the #ClutterPanAction that emitted the signal * @action: the #ClutterPanAction that emitted the signal
* @actor: the #ClutterActor attached to the @action * @actor: the #ClutterActor attached to the @action
* *