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/x11/gdkdisplay-x11.c | |
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/x11/gdkdisplay-x11.c')
-rw-r--r-- | gdk/x11/gdkdisplay-x11.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gdk/x11/gdkdisplay-x11.c b/gdk/x11/gdkdisplay-x11.c index edf18abe67..fedfada7c1 100644 --- a/gdk/x11/gdkdisplay-x11.c +++ b/gdk/x11/gdkdisplay-x11.c @@ -3081,10 +3081,6 @@ gdk_x11_display_class_init (GdkX11DisplayClass * class) display_class->supports_shapes = gdk_x11_display_supports_shapes; display_class->supports_input_shapes = gdk_x11_display_supports_input_shapes; display_class->get_app_launch_context = _gdk_x11_display_get_app_launch_context; - display_class->get_default_cursor_size = _gdk_x11_display_get_default_cursor_size; - display_class->get_maximal_cursor_size = _gdk_x11_display_get_maximal_cursor_size; - display_class->supports_cursor_alpha = _gdk_x11_display_supports_cursor_alpha; - display_class->supports_cursor_color = _gdk_x11_display_supports_cursor_color; display_class->get_next_serial = gdk_x11_display_get_next_serial; display_class->notify_startup_complete = gdk_x11_display_notify_startup_complete; |