Make _gdk_windowing_window_queue_translation a GdkWindiwImpl call

This commit is contained in:
Alexander Larsson
2008-12-15 14:55:53 +01:00
committed by Alexander Larsson
parent f22211c881
commit 36ce54878b
7 changed files with 39 additions and 31 deletions

View File

@ -1119,6 +1119,15 @@ gdk_offscreen_window_queue_antiexpose (GdkWindow *window,
return FALSE;
}
static void
gdk_offscreen_window_queue_translation (GdkWindow *window,
GdkRegion *area,
gint dx,
gint dy)
{
}
static void
gdk_offscreen_window_class_init (GdkOffscreenWindowClass *klass)
{
@ -1173,6 +1182,7 @@ gdk_offscreen_window_impl_iface_init (GdkWindowImplIface *iface)
iface->merge_child_shapes = gdk_offscreen_window_merge_child_shapes;
iface->set_static_gravities = gdk_offscreen_window_set_static_gravities;
iface->queue_antiexpose = gdk_offscreen_window_queue_antiexpose;
iface->queue_translation = gdk_offscreen_window_queue_translation;
iface->get_origin = gdk_offscreen_window_get_origin;
}