GesturePan: Remove widget parameter from docs, too
authorDaniel Boles <dboles.src@gmail.com>
Sat, 5 May 2018 09:51:24 +0000 (10:51 +0100)
committerDaniel Boles <dboles.src@gmail.com>
Sat, 5 May 2018 09:51:24 +0000 (10:51 +0100)
https://gitlab.gnome.org/GNOME/gtk/commit/71991270b047c66e7c14a65aaa70703527c978cf#note_112519

gtk/gtkgesturepan.c

index c02daeed64f5342399d6a1140c84b6cacc036479..cfd5eeb8c063fec4eccb045dfae160cf7e770390 100644 (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,