diff options
author | Matthias Clasen <mclasen@redhat.com> | 2018-01-16 23:22:41 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2018-01-16 23:32:01 -0500 |
commit | 77bab4e027c06dff7726d96fa4e477bc11b23835 (patch) | |
tree | 72afdb2b5aee754d40bc736c197fcfcfaea0e986 /gdk/gdkdisplayprivate.h | |
parent | ab1f17cb9a18301a5688cdecc35fa147ef2140f5 (diff) | |
download | gtk+-77bab4e027c06dff7726d96fa4e477bc11b23835.tar.gz |
gdk: Drop some unused cursor apis
The query function for cursor sizes and capabilities
are not very interesting. At least, they are not used
in GTK+, and all backends but X11 just hardcode
made-up values anyway. So, lets drop them.
Diffstat (limited to 'gdk/gdkdisplayprivate.h')
-rw-r--r-- | gdk/gdkdisplayprivate.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/gdk/gdkdisplayprivate.h b/gdk/gdkdisplayprivate.h index 7eecaac518..ddb1c14f72 100644 --- a/gdk/gdkdisplayprivate.h +++ b/gdk/gdkdisplayprivate.h @@ -128,15 +128,6 @@ struct _GdkDisplayClass GdkWindow * (*get_default_group) (GdkDisplay *display); gboolean (*supports_shapes) (GdkDisplay *display); gboolean (*supports_input_shapes) (GdkDisplay *display); - gboolean (*supports_cursor_alpha) (GdkDisplay *display); - gboolean (*supports_cursor_color) (GdkDisplay *display); - - void (*get_default_cursor_size) (GdkDisplay *display, - guint *width, - guint *height); - void (*get_maximal_cursor_size) (GdkDisplay *display, - guint *width, - guint *height); GdkAppLaunchContext * (*get_app_launch_context) (GdkDisplay *display); |