Remove unused grab_one_pointer_release_event var

We don't use this anymore, so just remove.
This commit is contained in:
Alexander Larsson 2009-09-28 15:26:19 +02:00
parent 5ebb32d1ff
commit 739121dee0
2 changed files with 1 additions and 4 deletions

View File

@ -1046,9 +1046,7 @@ _gdk_display_pointer_grab_update (GdkDisplay *display,
if (current_grab->serial_start > current_serial)
return; /* Hasn't started yet */
if (current_grab->serial_end > current_serial ||
(current_grab->serial_end == current_serial &&
current_grab->grab_one_pointer_release_event))
if (current_grab->serial_end > current_serial)
{
/* This one hasn't ended yet.
its the currently active one or scheduled to be active */

View File

@ -185,7 +185,6 @@ typedef struct
gboolean activated;
gboolean implicit_ungrab;
gboolean grab_one_pointer_release_event;
} GdkPointerGrabInfo;
typedef struct _GdkInputWindow GdkInputWindow;