mirror of
https://github.com/brl/mutter.git
synced 2024-11-23 00:20:42 -05:00
gesture-action: Fix typo in clutter_gesture_action_get_threshold_trigger_egde()
Let's cross fingers and hope nobody notices. If this went unnoticed so far, likely means this function has never been used. If any complain is raised about this, a stub function should be added (and marked deprecated).
This commit is contained in:
parent
9510d6ac95
commit
fd8705b9c6
@ -1250,7 +1250,7 @@ clutter_gesture_action_set_threshold_trigger_edge (ClutterGestureAction *ac
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* clutter_gesture_action_get_threshold_trigger_egde:
|
* clutter_gesture_action_get_threshold_trigger_edge:
|
||||||
* @action: a #ClutterGestureAction
|
* @action: a #ClutterGestureAction
|
||||||
*
|
*
|
||||||
* Retrieves the edge trigger of the gesture @action, as set using
|
* Retrieves the edge trigger of the gesture @action, as set using
|
||||||
@ -1261,7 +1261,7 @@ clutter_gesture_action_set_threshold_trigger_edge (ClutterGestureAction *ac
|
|||||||
* Since: 1.18
|
* Since: 1.18
|
||||||
*/
|
*/
|
||||||
ClutterGestureTriggerEdge
|
ClutterGestureTriggerEdge
|
||||||
clutter_gesture_action_get_threshold_trigger_egde (ClutterGestureAction *action)
|
clutter_gesture_action_get_threshold_trigger_edge (ClutterGestureAction *action)
|
||||||
{
|
{
|
||||||
g_return_val_if_fail (CLUTTER_IS_GESTURE_ACTION (action),
|
g_return_val_if_fail (CLUTTER_IS_GESTURE_ACTION (action),
|
||||||
CLUTTER_GESTURE_TRIGGER_EDGE_NONE);
|
CLUTTER_GESTURE_TRIGGER_EDGE_NONE);
|
||||||
|
@ -160,7 +160,7 @@ CLUTTER_AVAILABLE_IN_1_18
|
|||||||
void clutter_gesture_action_set_threshold_trigger_edge (ClutterGestureAction *action,
|
void clutter_gesture_action_set_threshold_trigger_edge (ClutterGestureAction *action,
|
||||||
ClutterGestureTriggerEdge edge);
|
ClutterGestureTriggerEdge edge);
|
||||||
CLUTTER_AVAILABLE_IN_1_18
|
CLUTTER_AVAILABLE_IN_1_18
|
||||||
ClutterGestureTriggerEdge clutter_gesture_action_get_threshold_trigger_egde (ClutterGestureAction *action);
|
ClutterGestureTriggerEdge clutter_gesture_action_get_threshold_trigger_edge (ClutterGestureAction *action);
|
||||||
|
|
||||||
CLUTTER_AVAILABLE_IN_1_18
|
CLUTTER_AVAILABLE_IN_1_18
|
||||||
void clutter_gesture_action_set_threshold_trigger_distance (ClutterGestureAction *action,
|
void clutter_gesture_action_set_threshold_trigger_distance (ClutterGestureAction *action,
|
||||||
|
@ -2999,7 +2999,7 @@ clutter_gesture_action_get_threshold_trigger_distance
|
|||||||
clutter_gesture_action_set_threshold_trigger_distance
|
clutter_gesture_action_set_threshold_trigger_distance
|
||||||
ClutterGestureTriggerEdge
|
ClutterGestureTriggerEdge
|
||||||
clutter_gesture_action_set_threshold_trigger_edge
|
clutter_gesture_action_set_threshold_trigger_edge
|
||||||
clutter_gesture_action_get_threshold_trigger_egde
|
clutter_gesture_action_get_threshold_trigger_edge
|
||||||
clutter_gesture_action_cancel
|
clutter_gesture_action_cancel
|
||||||
<SUBSECTION Standard>
|
<SUBSECTION Standard>
|
||||||
CLUTTER_GESTURE_ACTION
|
CLUTTER_GESTURE_ACTION
|
||||||
|
Loading…
Reference in New Issue
Block a user