summaryrefslogtreecommitdiff
path: root/gdk/wayland
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2020-06-08 18:20:20 -0400
committerMatthias Clasen <mclasen@redhat.com>2020-06-08 18:24:20 -0400
commit876560924fe9e5affff16d75cef7817b539c057d (patch)
tree96429df6941a31087e0aadbb595864980de849d7 /gdk/wayland
parentca1c89c5bda7cffd7eacec0c8a7be06e7a98131c (diff)
downloadgtk+-876560924fe9e5affff16d75cef7817b539c057d.tar.gz
wayland: Drop a pointless vfunc
A vfunc that just returns FALSE is not useful.
Diffstat (limited to 'gdk/wayland')
-rw-r--r--gdk/wayland/gdkdevice-wayland.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/gdk/wayland/gdkdevice-wayland.c b/gdk/wayland/gdkdevice-wayland.c
index c0708bc8af..17001aff1b 100644
--- a/gdk/wayland/gdkdevice-wayland.c
+++ b/gdk/wayland/gdkdevice-wayland.c
@@ -309,17 +309,6 @@ static void deliver_key_event (GdkWaylandSeat *seat,
uint32_t state,
gboolean from_key_repeat);
-static gboolean
-gdk_wayland_device_get_history (GdkDevice *device,
- GdkSurface *surface,
- guint32 start,
- guint32 stop,
- GdkTimeCoord ***events,
- gint *n_events)
-{
- return FALSE;
-}
-
static void
gdk_wayland_device_get_state (GdkDevice *device,
GdkSurface *surface,
@@ -828,7 +817,6 @@ gdk_wayland_device_class_init (GdkWaylandDeviceClass *klass)
{
GdkDeviceClass *device_class = GDK_DEVICE_CLASS (klass);
- device_class->get_history = gdk_wayland_device_get_history;
device_class->get_state = gdk_wayland_device_get_state;
device_class->set_surface_cursor = gdk_wayland_device_set_surface_cursor;
device_class->query_state = gdk_wayland_device_query_state;