From: Claudio Cambra Date: Wed, 26 Jun 2024 09:24:42 +0000 (+0800) Subject: Do not use const for POD type in setShowCallNotifications declaration X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~12^2~5^2~20^2~1 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=2608016995d6c6caf8e42f56dbb35e36f422c18d;p=nextcloud-desktop.git Do not use const for POD type in setShowCallNotifications declaration Signed-off-by: Claudio Cambra --- 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);