summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 :