summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJohan Klokkhammer Helsing <johan.helsing@qt.io>2018-09-13 11:57:54 +0200
committerJohan Helsing <johan.helsing@qt.io>2018-09-14 13:58:46 +0000
commit851cb16fcf170b2a9b6f00b1e828cda449113a81 (patch)
treed95e6bb963758a9b979d0e160ad5f521adac7de2 /tests
parent419449ed11af70e6f7569aa7c9ebcb86a09a74ff (diff)
Add missing Q_UNUSED
Change-Id: I7e6b4460aac92cb9669ac1d0d0f4785a8444925d Reviewed-by: Paul Olav Tvete <paul.tvete@qt.io>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/client/shared/mockxdgshellv6.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/auto/client/shared/mockxdgshellv6.cpp b/tests/auto/client/shared/mockxdgshellv6.cpp
index 014a24be7..5dc8da599 100644
--- a/tests/auto/client/shared/mockxdgshellv6.cpp
+++ b/tests/auto/client/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);