From 2608016995d6c6caf8e42f56dbb35e36f422c18d Mon Sep 17 00:00:00 2001 From: Claudio Cambra Date: Wed, 26 Jun 2024 17:24:42 +0800 Subject: [PATCH] Do not use const for POD type in setShowCallNotifications declaration Signed-off-by: Claudio Cambra --- src/libsync/configfile.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libsync/configfile.h b/src/libsync/configfile.h index 212d6e6fe..844036336 100644 --- a/src/libsync/configfile.h +++ b/src/libsync/configfile.h @@ -171,7 +171,7 @@ public: void setShowChatNotifications(bool show); [[nodiscard]] bool showCallNotifications() const; - void setShowCallNotifications(const bool show); + void setShowCallNotifications(bool show); [[nodiscard]] bool showInExplorerNavigationPane() const; void setShowInExplorerNavigationPane(bool show); -- 2.30.2