summaryrefslogtreecommitdiff
path: root/extensions/source/update
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/source/update')
-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
-rw-r--r--extensions/source/update/feed/updatefeed.cxx6
-rw-r--r--extensions/source/update/ui/updatecheckui.cxx4
10 files changed, 15 insertions, 15 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;
diff --git a/extensions/source/update/feed/updatefeed.cxx b/extensions/source/update/feed/updatefeed.cxx
index 155b0ff862df..d0e779be0c5f 100644
--- a/extensions/source/update/feed/updatefeed.cxx
+++ b/extensions/source/update/feed/updatefeed.cxx
@@ -187,7 +187,7 @@ public:
protected:
- virtual ~UpdateInformationProvider();
+ virtual ~UpdateInformationProvider() override;
static OUString getConfigurationItem(uno::Reference<lang::XMultiServiceFactory> const & configurationProvider, OUString const & node, OUString const & item);
static uno::Any getConfigurationItemAny(uno::Reference<lang::XMultiServiceFactory> const & configurationProvider, OUString const & node, OUString const & item);
@@ -233,7 +233,7 @@ public:
{
};
- virtual ~UpdateInformationEnumeration() {};
+ virtual ~UpdateInformationEnumeration() override {};
// XEnumeration
sal_Bool SAL_CALL hasMoreElements() throw (uno::RuntimeException, std::exception) override { return m_nCount < m_nNodes; };
@@ -292,7 +292,7 @@ class SingleUpdateInformationEnumeration : public ::cppu::WeakImplHelper< contai
public:
explicit SingleUpdateInformationEnumeration(const uno::Reference< xml::dom::XElement >& xElement)
: m_nCount(0) { m_aEntry.UpdateDocument = xElement; };
- virtual ~SingleUpdateInformationEnumeration() {};
+ virtual ~SingleUpdateInformationEnumeration() override {};
// XEnumeration
sal_Bool SAL_CALL hasMoreElements() throw (uno::RuntimeException, std::exception) override { return 0 == m_nCount; };
diff --git a/extensions/source/update/ui/updatecheckui.cxx b/extensions/source/update/ui/updatecheckui.cxx
index 8bbc834d83b1..7fb23d197b44 100644
--- a/extensions/source/update/ui/updatecheckui.cxx
+++ b/extensions/source/update/ui/updatecheckui.cxx
@@ -103,7 +103,7 @@ private:
public:
BubbleWindow( vcl::Window* pParent, const OUString& rTitle,
const OUString& rText, const Image& rImage );
- virtual ~BubbleWindow();
+ virtual ~BubbleWindow() override;
virtual void MouseButtonDown( const MouseEvent& rMEvt ) override;
virtual void Paint(vcl::RenderContext& rRenderContext, const Rectangle& rRect) override;
@@ -155,7 +155,7 @@ private:
public:
explicit UpdateCheckUI(const uno::Reference<uno::XComponentContext>&);
- virtual ~UpdateCheckUI();
+ virtual ~UpdateCheckUI() override;
// XServiceInfo
virtual OUString SAL_CALL getImplementationName()