From 328cf606d4739025428d1f698b2b70481b19a2a3 Mon Sep 17 00:00:00 2001 From: Vlad Zahorodnii Date: Tue, 14 Mar 2023 11:04:30 +0200 Subject: [PATCH] Fix compiler warning about unused captured variable --- src/main_x11.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main_x11.cpp b/src/main_x11.cpp index 466ff7b6d2..21f5e1aabd 100644 --- a/src/main_x11.cpp +++ b/src/main_x11.cpp @@ -286,7 +286,7 @@ void ApplicationX11::performStartup() bool ok = false; const quint32 t = timestamp.toULongLong(&ok); if (ok) { - kwinApp()->setX11Time(t); + setX11Time(t); } });