GDK_ROOT_PARENT -> gdk_get_default_root_window

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38558 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Mart Raudsepp
2006-04-04 17:50:58 +00:00
parent 791d7ea2d6
commit 2454dc8a64
3 changed files with 5 additions and 5 deletions

View File

@@ -46,11 +46,11 @@ static void DrawFrame( GtkWidget *widget, int x, int y, int w, int h )
x += org_x;
y += org_y;
GdkGC *gc = gdk_gc_new( GDK_ROOT_PARENT() );
GdkGC *gc = gdk_gc_new( gdk_get_default_root_window() );
gdk_gc_set_subwindow( gc, GDK_INCLUDE_INFERIORS );
gdk_gc_set_function( gc, GDK_INVERT );
gdk_draw_rectangle( GDK_ROOT_PARENT(), gc, FALSE, x, y, w, h );
gdk_draw_rectangle( gdk_get_default_root_window(), gc, FALSE, x, y, w, h );
g_object_unref (G_OBJECT (gc));
}