gdk: gdk_drawable_get_screen/visual => gdk_window_get_screen/visual

This commit is contained in:
Benjamin Otte
2010-08-29 01:32:52 +02:00
parent 9f47be2216
commit a6e936788a
11 changed files with 24 additions and 25 deletions

View File

@ -1050,7 +1050,7 @@ _gdk_win32_drawable_description (GdkDrawable *d)
g_return_val_if_fail (GDK_IS_DRAWABLE (d), NULL);
gdk_drawable_get_size (d, &width, &height);
depth = gdk_drawable_get_depth (d);
depth = gdk_visual_get_depth (gdk_window_get_visual (GDK_WINDOW (d)));
return static_printf ("%s:%p:%dx%dx%d",
G_OBJECT_TYPE_NAME (d),