GesturePan: Remove widget parameter from docs, too

71991270b0 (note_112519)
This commit is contained in:
Daniel Boles 2018-05-05 10:51:24 +01:00
parent f6a79559e9
commit 901aa59b5b

View File

@ -268,7 +268,6 @@ gtk_gesture_pan_init (GtkGesturePan *gesture)
/**
* gtk_gesture_pan_new:
* @widget: a #GtkWidget
* @orientation: expected orientation
*
* Returns a newly created #GtkGesture that recognizes pan gestures.
@ -276,7 +275,7 @@ gtk_gesture_pan_init (GtkGesturePan *gesture)
* Returns: a newly created #GtkGesturePan
**/
GtkGesture *
gtk_gesture_pan_new (GtkOrientation orientation)
gtk_gesture_pan_new (GtkOrientation orientation)
{
return g_object_new (GTK_TYPE_GESTURE_PAN,
"orientation", orientation,