diff options
author | Alexander Larsson <alexl@redhat.com> | 2018-03-20 15:14:10 +0100 |
---|---|---|
committer | Alexander Larsson <alexl@redhat.com> | 2018-03-20 15:14:10 +0100 |
commit | 3dce0dcca705c4ab6d8c4f5067db93947184b6af (patch) | |
tree | 8de99e5b35abc5242accafb84d0526b08c66b9e7 /gdk/gdkseat.h | |
parent | 9a7e721181ce714ab248429dc1258984b9e10748 (diff) | |
download | gtk+-3dce0dcca705c4ab6d8c4f5067db93947184b6af.tar.gz |
GdkSurface: Rename lots of stuff from window->surface
Mostly these are internal things, but the major public change is
that event.window is now event.surface.
Diffstat (limited to 'gdk/gdkseat.h')
-rw-r--r-- | gdk/gdkseat.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gdk/gdkseat.h b/gdk/gdkseat.h index c9a0a4c220..bb0eb069f2 100644 --- a/gdk/gdkseat.h +++ b/gdk/gdkseat.h @@ -64,18 +64,18 @@ typedef enum { /** * GdkSeatGrabPrepareFunc: * @seat: the #GdkSeat being grabbed - * @window: the #GdkSurface being grabbed + * @surface: the #GdkSurface being grabbed * @user_data: user data passed in gdk_seat_grab() * - * Type of the callback used to set up @window so it can be - * grabbed. A typical action would be ensuring the window is + * Type of the callback used to set up @surface so it can be + * grabbed. A typical action would be ensuring the surface is * visible, although there's room for other initialization * actions. * * Since: 3.20 */ typedef void (* GdkSeatGrabPrepareFunc) (GdkSeat *seat, - GdkSurface *window, + GdkSurface *surface, gpointer user_data); struct _GdkSeat @@ -88,7 +88,7 @@ GType gdk_seat_get_type (void) G_GNUC_CONST; GDK_AVAILABLE_IN_ALL GdkGrabStatus gdk_seat_grab (GdkSeat *seat, - GdkSurface *window, + GdkSurface *surface, GdkSeatCapabilities capabilities, gboolean owner_events, GdkCursor *cursor, |