[Libreoffice-commits] core.git: extensions/source

Stephan Bergmann sbergman at redhat.com
Wed Dec 6 08:46:44 UTC 2017


 extensions/source/update/check/updatecheck.hxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 4cd48c5d9221c24952050b5ded41f9e078d9141d
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Wed Dec 6 09:45:05 2017 +0100

    loplugin:salcall
    
    Change-Id: Ie3931deb3b39160a6f46dd744ea5b098904d55d2

diff --git a/extensions/source/update/check/updatecheck.hxx b/extensions/source/update/check/updatecheck.hxx
index af0bd07eb6c0..7a797136b692 100644
--- a/extensions/source/update/check/updatecheck.hxx
+++ b/extensions/source/update/check/updatecheck.hxx
@@ -41,7 +41,7 @@ class UpdateCheck;
 class UpdateCheckInitData {
 
 public:
-    inline rtl::Reference< UpdateCheck > SAL_CALL operator() () const;
+    inline rtl::Reference< UpdateCheck > operator() () const;
 };
 
 class WorkerThread : public osl::Thread
@@ -169,7 +169,7 @@ private:
     friend class UpdateCheckInitData;
 };
 
-inline rtl::Reference< UpdateCheck > SAL_CALL
+inline rtl::Reference< UpdateCheck >
 UpdateCheckInitData::operator() () const
 {
     return rtl::Reference< UpdateCheck > (new UpdateCheck());


More information about the Libreoffice-commits mailing list