Fix a typo which broke moveresize emulation.

* gdk/x11/gdkwindow-x11.c (_gdk_moveresize_handle_event): Fix a
	typo which broke moveresize emulation.
This commit is contained in:
Matthias Clasen 2002-11-10 01:33:53 +00:00
parent af145bf2df
commit f4823da651
7 changed files with 31 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2002-11-10 Matthias Clasen <maclas@gmx.de>
* gdk/x11/gdkwindow-x11.c (_gdk_moveresize_handle_event): Fix a
typo which broke moveresize emulation.
Sat Nov 9 14:42:53 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkmenu.c (gtk_menu_button_*): Block

View File

@ -1,3 +1,8 @@
2002-11-10 Matthias Clasen <maclas@gmx.de>
* gdk/x11/gdkwindow-x11.c (_gdk_moveresize_handle_event): Fix a
typo which broke moveresize emulation.
Sat Nov 9 14:42:53 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkmenu.c (gtk_menu_button_*): Block

View File

@ -1,3 +1,8 @@
2002-11-10 Matthias Clasen <maclas@gmx.de>
* gdk/x11/gdkwindow-x11.c (_gdk_moveresize_handle_event): Fix a
typo which broke moveresize emulation.
Sat Nov 9 14:42:53 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkmenu.c (gtk_menu_button_*): Block

View File

@ -1,3 +1,8 @@
2002-11-10 Matthias Clasen <maclas@gmx.de>
* gdk/x11/gdkwindow-x11.c (_gdk_moveresize_handle_event): Fix a
typo which broke moveresize emulation.
Sat Nov 9 14:42:53 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkmenu.c (gtk_menu_button_*): Block

View File

@ -1,3 +1,8 @@
2002-11-10 Matthias Clasen <maclas@gmx.de>
* gdk/x11/gdkwindow-x11.c (_gdk_moveresize_handle_event): Fix a
typo which broke moveresize emulation.
Sat Nov 9 14:42:53 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkmenu.c (gtk_menu_button_*): Block

View File

@ -1,3 +1,8 @@
2002-11-10 Matthias Clasen <maclas@gmx.de>
* gdk/x11/gdkwindow-x11.c (_gdk_moveresize_handle_event): Fix a
typo which broke moveresize emulation.
Sat Nov 9 14:42:53 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkmenu.c (gtk_menu_button_*): Block

View File

@ -4653,7 +4653,7 @@ _gdk_moveresize_handle_event (XEvent *event)
GdkDisplay *display= gdk_x11_lookup_xdisplay (event->xany.display);
MoveResizeData *mv_resize = get_move_resize_data (display, FALSE);
if (!mv_resize || mv_resize->moveresize_window)
if (!mv_resize || !mv_resize->moveresize_window)
return FALSE;
window_private = (GdkWindowObject *) mv_resize->moveresize_window;