From 483ef644df353b63b53880492b40d23dbdc3a17c Mon Sep 17 00:00:00 2001 From: Vlad Zahorodnii Date: Tue, 19 Oct 2021 12:56:33 +0300 Subject: [PATCH] Fix build --- src/plugins/idletime/poller.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/idletime/poller.cpp b/src/plugins/idletime/poller.cpp index 7a49aa7347..7680ba703a 100644 --- a/src/plugins/idletime/poller.cpp +++ b/src/plugins/idletime/poller.cpp @@ -42,7 +42,7 @@ void KWinIdleTimePoller::unloadPoller() { if (waylandServer() && waylandServer()->idle()) { disconnect(waylandServer()->idle(), &KWaylandServer::IdleInterface::inhibitedChanged, this, &KWinIdleTimePoller::onInhibitedChanged); - disconnect(waylandServer()->idle(), &KWaylandServer::IdleInterface::timestampChanged, this, &KWinIdleTimePoller::onTimestampChanged); + disconnect(waylandServer()->seat(), &KWaylandServer::SeatInterface::timestampChanged, this, &KWinIdleTimePoller::onTimestampChanged); } qDeleteAll(m_timeouts);