[gtk+/wip/carlosg/event-delivery] Gesture: Remove window property completely



commit aaa215e1b32092b39060ebc234e41fb2edd3bd57
Author: Timm Bäder <mail baedert org>
Date:   Sat May 20 09:00:07 2017 +0200

    Gesture: Remove window property completely
    
    These are just leftovers, it's already gone from public API and the
    _{set,get}_property implementations.

 gtk/gtkgesture.c |   16 ----------------
 1 files changed, 0 insertions(+), 16 deletions(-)
---
diff --git a/gtk/gtkgesture.c b/gtk/gtkgesture.c
index 719aed5..caef7d4 100644
--- a/gtk/gtkgesture.c
+++ b/gtk/gtkgesture.c
@@ -130,7 +130,6 @@ typedef struct _PointData PointData;
 
 enum {
   PROP_N_POINTS = 1,
-  PROP_WINDOW
 };
 
 enum {
@@ -796,21 +795,6 @@ gtk_gesture_class_init (GtkGestureClass *klass)
                                                       GTK_PARAM_READWRITE |
                                                      G_PARAM_CONSTRUCT_ONLY));
   /**
-   * GtkGesture:window:
-   *
-   * If non-%NULL, the gesture will only listen for events that happen on
-   * this #GdkWindow, or a child of it.
-   *
-   * Since: 3.14
-   */
-  g_object_class_install_property (object_class,
-                                   PROP_WINDOW,
-                                   g_param_spec_object ("window",
-                                                        P_("GdkWindow to receive events about"),
-                                                        P_("GdkWindow to receive events about"),
-                                                        GDK_TYPE_WINDOW,
-                                                        GTK_PARAM_READWRITE));
-  /**
    * GtkGesture::begin:
    * @gesture: the object which received the signal
    * @sequence: the #GdkEventSequence that made the gesture to be recognized


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]