summaryrefslogtreecommitdiff
path: root/extensions/source/update/check
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/source/update/check')
-rw-r--r--extensions/source/update/check/actionlistener.hxx2
-rw-r--r--extensions/source/update/check/download.hxx2
-rw-r--r--extensions/source/update/check/updatecheck.cxx6
-rw-r--r--extensions/source/update/check/updatecheck.hxx2
-rw-r--r--extensions/source/update/check/updatecheckconfig.hxx2
-rw-r--r--extensions/source/update/check/updatecheckconfiglistener.hxx2
-rw-r--r--extensions/source/update/check/updatecheckjob.cxx2
-rw-r--r--extensions/source/update/check/updatehdl.hxx2
8 files changed, 10 insertions, 10 deletions
diff --git a/extensions/source/update/check/actionlistener.hxx b/extensions/source/update/check/actionlistener.hxx
index 25deba207292..33304b711118 100644
--- a/extensions/source/update/check/actionlistener.hxx
+++ b/extensions/source/update/check/actionlistener.hxx
@@ -35,7 +35,7 @@ class IActionListener : public virtual salhelper::SimpleReferenceObject
virtual void closeAfterFailure() = 0;
protected:
- virtual ~IActionListener() {}
+ virtual ~IActionListener() override {}
};
#endif // INCLUDED_EXTENSIONS_SOURCE_UPDATE_CHECK_ACTIONLISTENER_HXX
diff --git a/extensions/source/update/check/download.hxx b/extensions/source/update/check/download.hxx
index 4096308c0a74..9ecce2e55119 100644
--- a/extensions/source/update/check/download.hxx
+++ b/extensions/source/update/check/download.hxx
@@ -48,7 +48,7 @@ struct DownloadInteractionHandler : public virtual salhelper::SimpleReferenceObj
virtual void downloadFinished(const OUString& rFileName) = 0;
protected:
- virtual ~DownloadInteractionHandler() {}
+ virtual ~DownloadInteractionHandler() override {}
};
diff --git a/extensions/source/update/check/updatecheck.cxx b/extensions/source/update/check/updatecheck.cxx
index 25a84c978ae2..7bee406f8b2d 100644
--- a/extensions/source/update/check/updatecheck.cxx
+++ b/extensions/source/update/check/updatecheck.cxx
@@ -234,7 +234,7 @@ public:
virtual void cancel() override;
protected:
- virtual ~UpdateCheckThread();
+ virtual ~UpdateCheckThread() override;
virtual void SAL_CALL run() override;
virtual void SAL_CALL onTerminated() override;
@@ -319,7 +319,7 @@ public:
virtual void SAL_CALL onTerminated() override;
protected:
- virtual ~DownloadThread();
+ virtual ~DownloadThread() override;
private:
osl::Condition& m_aCondition;
@@ -338,7 +338,7 @@ public:
virtual void SAL_CALL onTerminated() override;
protected:
- virtual ~ShutdownThread();
+ virtual ~ShutdownThread() override;
private:
osl::Condition m_aCondition;
diff --git a/extensions/source/update/check/updatecheck.hxx b/extensions/source/update/check/updatecheck.hxx
index f2a344ac55f0..e7e9c4fed089 100644
--- a/extensions/source/update/check/updatecheck.hxx
+++ b/extensions/source/update/check/updatecheck.hxx
@@ -58,7 +58,7 @@ class UpdateCheck :
{
UpdateCheck();
- virtual ~UpdateCheck();
+ virtual ~UpdateCheck() override;
public:
inline SAL_CALL operator rtl::Reference< UpdateCheckConfigListener > ()
diff --git a/extensions/source/update/check/updatecheckconfig.hxx b/extensions/source/update/check/updatecheckconfig.hxx
index 42b46cf4fdb4..9380bf6cada5 100644
--- a/extensions/source/update/check/updatecheckconfig.hxx
+++ b/extensions/source/update/check/updatecheckconfig.hxx
@@ -86,7 +86,7 @@ class UpdateCheckConfig : public ::cppu::WeakImplHelper<
const css::uno::Reference< css::container::XNameContainer >& xIgnoredUpdates,
const ::rtl::Reference< UpdateCheckConfigListener >& rListener );
- virtual ~UpdateCheckConfig();
+ virtual ~UpdateCheckConfig() override;
public:
diff --git a/extensions/source/update/check/updatecheckconfiglistener.hxx b/extensions/source/update/check/updatecheckconfiglistener.hxx
index b96355ae1cbe..277ca23e0643 100644
--- a/extensions/source/update/check/updatecheckconfiglistener.hxx
+++ b/extensions/source/update/check/updatecheckconfiglistener.hxx
@@ -33,7 +33,7 @@ struct UpdateCheckConfigListener : public virtual salhelper::SimpleReferenceObje
virtual void autoCheckIntervalChanged() = 0;
protected:
- virtual ~UpdateCheckConfigListener() {}
+ virtual ~UpdateCheckConfigListener() override {}
};
#endif
diff --git a/extensions/source/update/check/updatecheckjob.cxx b/extensions/source/update/check/updatecheckjob.cxx
index 5d48471f0869..4abdb50ddd3a 100644
--- a/extensions/source/update/check/updatecheckjob.cxx
+++ b/extensions/source/update/check/updatecheckjob.cxx
@@ -65,7 +65,7 @@ private:
class UpdateCheckJob :
public ::cppu::WeakImplHelper< task::XJob, lang::XServiceInfo, frame::XTerminateListener >
{
- virtual ~UpdateCheckJob();
+ virtual ~UpdateCheckJob() override;
public:
diff --git a/extensions/source/update/check/updatehdl.hxx b/extensions/source/update/check/updatehdl.hxx
index f509c73bbbc3..da93b1f9dc44 100644
--- a/extensions/source/update/check/updatehdl.hxx
+++ b/extensions/source/update/check/updatehdl.hxx
@@ -155,7 +155,7 @@ private:
public:
UpdateHandler( const css::uno::Reference< css::uno::XComponentContext > & rxContext,
const rtl::Reference< IActionListener > & rxActionListener );
- virtual ~UpdateHandler();
+ virtual ~UpdateHandler() override;
UpdateHandler(const UpdateHandler&) = delete;
UpdateHandler& operator=(const UpdateHandler&) = delete;