From c8d10612b0d4bd5b66322311a18c90d70952aff2 Mon Sep 17 00:00:00 2001 From: Johan Klokkhammer Helsing Date: Thu, 13 Sep 2018 11:57:54 +0200 Subject: [PATCH] Add missing Q_UNUSED Change-Id: I7e6b4460aac92cb9669ac1d0d0f4785a8444925d Reviewed-by: Paul Olav Tvete --- tests/auto/wayland/shared/mockxdgshellv6.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/auto/wayland/shared/mockxdgshellv6.cpp b/tests/auto/wayland/shared/mockxdgshellv6.cpp index 014a24be7c2..5dc8da599a7 100644 --- a/tests/auto/wayland/shared/mockxdgshellv6.cpp +++ b/tests/auto/wayland/shared/mockxdgshellv6.cpp @@ -59,6 +59,7 @@ void XdgSurfaceV6::zxdg_surface_v6_get_toplevel(QtWaylandServer::zxdg_surface_v6 void XdgSurfaceV6::zxdg_surface_v6_set_window_geometry(QtWaylandServer::zxdg_surface_v6::Resource *resource, int32_t x, int32_t y, int32_t width, int32_t height) { + Q_UNUSED(resource); if (m_toplevel) { QRect geometry(x, y, width, height); emit m_toplevel->mockToplevel()->windowGeometryRequested(geometry);