From 5a87000e3b205b7b36dc08a03def8f365042e9fc Mon Sep 17 00:00:00 2001 From: Alexander Lohnau Date: Mon, 17 Apr 2023 21:43:31 +0200 Subject: [PATCH] daemon/kdeconnectd: Use QOverload with undeprecated signal This will work in both KF5 and KF6 --- daemon/kdeconnectd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/kdeconnectd.cpp b/daemon/kdeconnectd.cpp index 093c26171..77a989be6 100644 --- a/daemon/kdeconnectd.cpp +++ b/daemon/kdeconnectd.cpp @@ -65,7 +65,7 @@ public: oc.openConfiguration(deviceId); }; connect(notification, &KNotification::action3Activated, openSettings); - connect(notification, QOverload<>::of(&KNotification::activated), openSettings); + connect(notification, QOverload::of(&KNotification::activated), openSettings); notification->sendEvent(); }