diff options
author | Matthias Clasen <mclasen@redhat.com> | 2019-05-29 15:21:20 +0000 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2019-05-29 18:04:08 +0000 |
commit | 8ed27d6e3bcfafb6fdf64dfabd0a978cd1cd984a (patch) | |
tree | ab09f510eb6c61628fe53069a2b39ec8249f103c /gdk/gdksurface.h | |
parent | 956e94a8d4c7897049e4331fa6b681f1d530ff01 (diff) | |
download | gtk+-8ed27d6e3bcfafb6fdf64dfabd0a978cd1cd984a.tar.gz |
Drop gdk_surface_move
And its cousin, gdk_surface_move_resize.
These APIs are expecting global coordinates,
which are going away. GTK is not using them
anymore.
Diffstat (limited to 'gdk/gdksurface.h')
-rw-r--r-- | gdk/gdksurface.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/gdk/gdksurface.h b/gdk/gdksurface.h index c93b3edba4..55660ed9a6 100644 --- a/gdk/gdksurface.h +++ b/gdk/gdksurface.h @@ -445,22 +445,11 @@ GDK_AVAILABLE_IN_ALL void gdk_surface_hide (GdkSurface *surface); GDK_AVAILABLE_IN_ALL void gdk_surface_show_unraised (GdkSurface *surface); - -GDK_AVAILABLE_IN_ALL -void gdk_surface_move (GdkSurface *surface, - gint x, - gint y); GDK_AVAILABLE_IN_ALL void gdk_surface_resize (GdkSurface *surface, gint width, gint height); GDK_AVAILABLE_IN_ALL -void gdk_surface_move_resize (GdkSurface *surface, - gint x, - gint y, - gint width, - gint height); -GDK_AVAILABLE_IN_ALL void gdk_surface_move_to_rect (GdkSurface *surface, const GdkRectangle *rect, GdkGravity rect_anchor, |