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:
Matthias Clasen 2008-08-28 00:32:17 +00:00 committed by Matthias Clasen
parent c2a194d3b1
commit 8f59f3adbb
3 changed files with 8 additions and 2 deletions

View File

@ -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

View File

@ -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

View File

@ -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