diff options
author | Matthias Clasen <mclasen@redhat.com> | 2019-03-24 23:09:48 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2019-05-28 20:25:14 +0000 |
commit | 8ee1620a2c78ee71c21ad11d305b2f565027d66c (patch) | |
tree | 13fade6f8570fc6dfcb2b7d54a7eec0125260fa6 /gdk/gdksurface.h | |
parent | 2ccd0dc8c69e1ae5649cb915db39ba9910be4207 (diff) | |
download | gtk+-8ee1620a2c78ee71c21ad11d305b2f565027d66c.tar.gz |
Remove gdk_surface_get_root_coords as public api
We still need to keep the vfunc around, since the
fallback implementation for move_to_rect uses it.
So, a GDK backend must either have root coordinates
or implement move_to_rect.
Diffstat (limited to 'gdk/gdksurface.h')
-rw-r--r-- | gdk/gdksurface.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/gdk/gdksurface.h b/gdk/gdksurface.h index 2ff71e62a6..3249810156 100644 --- a/gdk/gdksurface.h +++ b/gdk/gdksurface.h @@ -597,12 +597,6 @@ gint gdk_surface_get_origin (GdkSurface *surface, gint *x, gint *y); GDK_AVAILABLE_IN_ALL -void gdk_surface_get_root_coords (GdkSurface *surface, - gint x, - gint y, - gint *root_x, - gint *root_y); -GDK_AVAILABLE_IN_ALL void gdk_surface_get_root_origin (GdkSurface *surface, gint *x, gint *y); |