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

@ -1881,12 +1881,12 @@ gdk_win32_window_get_geometry (GdkWindow *window,
if (height)
*height = rect.bottom - rect.top;
if (depth)
*depth = gdk_drawable_get_visual (window)->depth;
*depth = gdk_window_get_visual (window)->depth;
GDK_NOTE (MISC, g_print ("gdk_win32_window_get_geometry: %p: %ldx%ldx%d@%+ld%+ld\n",
GDK_WINDOW_HWND (window),
rect.right - rect.left, rect.bottom - rect.top,
gdk_drawable_get_visual (window)->depth,
gdk_window_get_visual (window)->depth,
rect.left, rect.top));
}
}