Return FALSE from reparent implementations to avoid #548993. Patch by Ed
2008-08-27 Matthias Clasen <mclasen@redhat.com> * gdk/x11/gdkwindow-x11.c: * gdk/win32/gdkwindow-win32.c: Return FALSE from reparent implementations to avoid #548993. Patch by Ed Catmur. svn path=/trunk/; revision=21215
This commit is contained in:
parent
c2a194d3b1
commit
8f59f3adbb
@ -1,3 +1,9 @@
|
||||
2008-08-27 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gdk/x11/gdkwindow-x11.c:
|
||||
* gdk/win32/gdkwindow-win32.c: Return FALSE from reparent
|
||||
implementations to avoid #548993. Patch by Ed Catmur.
|
||||
|
||||
2008-08-27 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* modules/printbackends/cups/gtkprintbackendcups.c: Don't capitalize
|
||||
|
@ -1465,7 +1465,7 @@ gdk_win32_window_reparent (GdkWindow *window,
|
||||
parent_private->children = g_list_prepend (parent_private->children, window);
|
||||
_gdk_window_init_position (GDK_WINDOW (window_private));
|
||||
|
||||
return TRUE;
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
static void
|
||||
|
@ -1830,7 +1830,7 @@ gdk_window_x11_reparent (GdkWindow *window,
|
||||
parent_private->children = g_list_prepend (parent_private->children, window);
|
||||
_gdk_window_init_position (GDK_WINDOW (window_private));
|
||||
|
||||
return TRUE;
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
static void
|
||||
|
Loading…
Reference in New Issue
Block a user