summaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-12-06 09:45:05 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-12-06 09:45:05 +0100
commit4cd48c5d9221c24952050b5ded41f9e078d9141d (patch)
treed1677e43d3a62511c3020321e33908f3ca5fd00c /extensions
parent696fc45b4be3067176227637f448bee03fb2f7a6 (diff)
loplugin:salcall
Change-Id: Ie3931deb3b39160a6f46dd744ea5b098904d55d2
Diffstat (limited to 'extensions')
-rw-r--r--extensions/source/update/check/updatecheck.hxx4
1 files changed, 2 insertions, 2 deletions
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());