From f8d0b14f9aa185880007293e2a3c822202aa9b56 Mon Sep 17 00:00:00 2001 From: David Faure Date: Sat, 24 Aug 2019 12:13:23 +0200 Subject: [PATCH] Port to non-deprecated KWindowSystem::unminimizeWindow The bool is ignored since KF 5.0 --- src/MainWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp index ad0228e8..bfa71f28 100644 --- a/src/MainWindow.cpp +++ b/src/MainWindow.cpp @@ -594,7 +594,7 @@ bool MainWindow::queryClose() // make sure the window is shown on current desktop and is not minimized KWindowSystem::setOnDesktop(winId(), KWindowSystem::currentDesktop()); if (isMinimized()) { - KWindowSystem::unminimizeWindow(winId(), true); + KWindowSystem::unminimizeWindow(winId()); } int result;