diff options
author | Matthias Clasen <mclasen@redhat.com> | 2020-06-08 18:19:57 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2020-06-08 18:24:20 -0400 |
commit | ca1c89c5bda7cffd7eacec0c8a7be06e7a98131c (patch) | |
tree | 4069f9a39df995740b8b6516da0b6196eabc1851 /gdk/broadway | |
parent | c8988ec7840b851b3746c626eb87a58a0bca0965 (diff) | |
download | gtk+-ca1c89c5bda7cffd7eacec0c8a7be06e7a98131c.tar.gz |
broadway: Drop a pointless vfunc
A vfunc that just returns FALSE is not useful.
Diffstat (limited to 'gdk/broadway')
-rw-r--r-- | gdk/broadway/gdkdevice-broadway.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/gdk/broadway/gdkdevice-broadway.c b/gdk/broadway/gdkdevice-broadway.c index a936d36d36..4ab5295c7d 100644 --- a/gdk/broadway/gdkdevice-broadway.c +++ b/gdk/broadway/gdkdevice-broadway.c @@ -23,12 +23,6 @@ #include "gdksurfaceprivate.h" #include "gdkprivate-broadway.h" -static gboolean gdk_broadway_device_get_history (GdkDevice *device, - GdkSurface *surface, - guint32 start, - guint32 stop, - GdkTimeCoord ***events, - gint *n_events); static void gdk_broadway_device_get_state (GdkDevice *device, GdkSurface *surface, gdouble *axes, @@ -64,7 +58,6 @@ gdk_broadway_device_class_init (GdkBroadwayDeviceClass *klass) { GdkDeviceClass *device_class = GDK_DEVICE_CLASS (klass); - device_class->get_history = gdk_broadway_device_get_history; device_class->get_state = gdk_broadway_device_get_state; device_class->set_surface_cursor = gdk_broadway_device_set_surface_cursor; device_class->query_state = gdk_broadway_device_query_state; @@ -84,17 +77,6 @@ gdk_broadway_device_init (GdkBroadwayDevice *device_core) _gdk_device_add_axis (device, NULL, GDK_AXIS_Y, 0, 0, 1); } -static gboolean -gdk_broadway_device_get_history (GdkDevice *device, - GdkSurface *surface, - guint32 start, - guint32 stop, - GdkTimeCoord ***events, - gint *n_events) -{ - return FALSE; -} - static void gdk_broadway_device_get_state (GdkDevice *device, GdkSurface *surface, |