diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-06-10 11:47:42 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-06-10 16:19:22 +0200 |
commit | 67cadbe2a9165f99de7d47a861954c6bc6c5f216 (patch) | |
tree | 70e9a65e03402af4b2f029635403c46cc9900325 /include | |
parent | 893c8fa232b0c78c5f390f7d35b6e1a7f6538ed1 (diff) |
loplugin:unnecessaryreturn SvtListener::EndListening
Change-Id: Ifa7092b31b6027eeb5d7df67ac8b7de9337faf66
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/116985
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/svl/listener.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/svl/listener.hxx b/include/svl/listener.hxx index 38d72552618a..636e69d9cf8b 100644 --- a/include/svl/listener.hxx +++ b/include/svl/listener.hxx @@ -52,7 +52,7 @@ public: virtual ~SvtListener() COVERITY_NOEXCEPT_FALSE; bool StartListening( SvtBroadcaster& rBroadcaster ); - bool EndListening( SvtBroadcaster& rBroadcaster ); + void EndListening( SvtBroadcaster& rBroadcaster ); void EndListeningAll(); /// Overwrites existing broadcasters with the ones from the specified listener |