summaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-03-17 12:41:05 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-03-17 12:56:42 +0100
commit488817e3c47223ed65c3a22763fca9a435fa2c01 (patch)
tree55d72e3cf711cb1ab8b8cd03c3fcd8a923a44e41 /extensions
parentb69dcab522f04d914f5f2ded350032bc3840c312 (diff)
No need for SAL_CALL here
Change-Id: I283c883bf49e33941de33b9e58d355f683c96ea3
Diffstat (limited to 'extensions')
-rw-r--r--extensions/source/update/check/updatecheck.cxx8
-rw-r--r--extensions/source/update/check/updatecheck.hxx2
2 files changed, 5 insertions, 5 deletions
diff --git a/extensions/source/update/check/updatecheck.cxx b/extensions/source/update/check/updatecheck.cxx
index 4a86c0fc58a7..4b9038f18e73 100644
--- a/extensions/source/update/check/updatecheck.cxx
+++ b/extensions/source/update/check/updatecheck.cxx
@@ -239,7 +239,7 @@ public:
virtual void SAL_CALL join();
virtual void SAL_CALL terminate();
- virtual void SAL_CALL cancel();
+ virtual void cancel();
protected:
virtual ~UpdateCheckThread();
@@ -323,7 +323,7 @@ public:
const OUString& rURL );
virtual void SAL_CALL run();
- virtual void SAL_CALL cancel();
+ virtual void cancel();
virtual void SAL_CALL suspend();
virtual void SAL_CALL onTerminated();
@@ -401,7 +401,7 @@ UpdateCheckThread::join()
-void SAL_CALL
+void
UpdateCheckThread::cancel()
{
uno::Reference< deployment::XUpdateInformationProvider > xProvider(getProvider());
@@ -669,7 +669,7 @@ DownloadThread::run()
-void SAL_CALL DownloadThread::cancel()
+void DownloadThread::cancel()
{
m_aDownload.stop();
resume();
diff --git a/extensions/source/update/check/updatecheck.hxx b/extensions/source/update/check/updatecheck.hxx
index 8d40c32f85dc..9df196065aa5 100644
--- a/extensions/source/update/check/updatecheck.hxx
+++ b/extensions/source/update/check/updatecheck.hxx
@@ -45,7 +45,7 @@ public:
class WorkerThread : public osl::Thread
{
public:
- virtual void SAL_CALL cancel() = 0;
+ virtual void cancel() = 0;
};
class UpdateCheck :