diff options
author | Benjamin Otte <otte@redhat.com> | 2010-11-24 14:36:45 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2010-12-02 20:21:04 +0100 |
commit | 98838df2dbc9e337b71dcbe26efb341e8cfea8a1 (patch) | |
tree | 8e772926f5b76775c258c7ddb0ededf951c9ab4a /gdk/gdkwindow.c | |
parent | e3013a5cf52b5f918b823c935eed543743c4a9d8 (diff) | |
download | gtk+-98838df2dbc9e337b71dcbe26efb341e8cfea8a1.tar.gz |
gdk: Make GdkWindow->impl a GdkWindowImpl
Diffstat (limited to 'gdk/gdkwindow.c')
-rw-r--r-- | gdk/gdkwindow.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gdk/gdkwindow.c b/gdk/gdkwindow.c index d7061023b4..25dd678f8a 100644 --- a/gdk/gdkwindow.c +++ b/gdk/gdkwindow.c @@ -1473,11 +1473,11 @@ is_parent_of (GdkWindow *parent, static void change_impl (GdkWindow *private, GdkWindow *impl_window, - GdkDrawable *new) + GdkWindowImpl *new) { GList *l; GdkWindow *child; - GdkDrawable *old_impl; + GdkWindowImpl *old_impl; GdkWindow *old_impl_window; old_impl = private->impl; @@ -1777,7 +1777,7 @@ gboolean gdk_window_ensure_native (GdkWindow *window) { GdkWindow *impl_window; - GdkDrawable *new_impl, *old_impl; + GdkWindowImpl *new_impl, *old_impl; GdkScreen *screen; GdkWindow *above; GList listhead; @@ -3398,7 +3398,7 @@ gdk_window_flush_if_exposing (GdkWindow *window) static void gdk_window_flush_recursive_helper (GdkWindow *window, - GdkDrawable *impl) + GdkWindowImpl *impl) { GdkWindow *child; GList *l; @@ -6054,7 +6054,7 @@ move_native_children (GdkWindow *private) static gboolean collect_native_child_region_helper (GdkWindow *window, - GdkDrawable *impl, + GdkWindowImpl *impl, cairo_region_t **region, int x_offset, int y_offset) |