From ef49484f59e5841b7767932322a77b034d0062de Mon Sep 17 00:00:00 2001 From: ivan tkachenko Date: Fri, 15 Jul 2022 15:15:24 +0300 Subject: [PATCH] [kcms/icons] Use newer syntax for QML Connections --- kcms/icons/package/contents/ui/main.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kcms/icons/package/contents/ui/main.qml b/kcms/icons/package/contents/ui/main.qml index 680a10ebf..1cbcde5f8 100644 --- a/kcms/icons/package/contents/ui/main.qml +++ b/kcms/icons/package/contents/ui/main.qml @@ -206,12 +206,12 @@ KCM.GridViewKCM { Connections { target: kcm - onShowProgress: { + function onShowProgress() { progressLabel.text = message; progressBusy.running = true; progressRow.visible = true; } - onHideProgress: { + function onHideProgress() { progressBusy.running = false; progressRow.visible = false; }