summaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
Diffstat (limited to 'shell')
-rw-r--r--shell/source/backends/desktopbe/desktopbackend.cxx2
-rw-r--r--shell/source/backends/kde4be/kde4backend.cxx2
-rw-r--r--shell/source/backends/localebe/localebackend.hxx2
-rw-r--r--shell/source/sessioninstall/SyncDbusSessionHelper.hxx2
4 files changed, 4 insertions, 4 deletions
diff --git a/shell/source/backends/desktopbe/desktopbackend.cxx b/shell/source/backends/desktopbe/desktopbackend.cxx
index fdbe4d4e9d61..db220c3e85df 100644
--- a/shell/source/backends/desktopbe/desktopbackend.cxx
+++ b/shell/source/backends/desktopbe/desktopbackend.cxx
@@ -75,7 +75,7 @@ public:
Default& operator=(const Default&) = delete;
private:
- virtual ~Default() {}
+ virtual ~Default() override {}
virtual OUString SAL_CALL getImplementationName()
throw (css::uno::RuntimeException, std::exception) override
diff --git a/shell/source/backends/kde4be/kde4backend.cxx b/shell/source/backends/kde4be/kde4backend.cxx
index 013e5321d507..bd0b2d49edd4 100644
--- a/shell/source/backends/kde4be/kde4backend.cxx
+++ b/shell/source/backends/kde4be/kde4backend.cxx
@@ -73,7 +73,7 @@ public:
Service& operator=(const Service&) = delete;
private:
- virtual ~Service() {}
+ virtual ~Service() override {}
virtual OUString SAL_CALL getImplementationName()
throw (css::uno::RuntimeException, std::exception) override
diff --git a/shell/source/backends/localebe/localebackend.hxx b/shell/source/backends/localebe/localebackend.hxx
index 5d7a2e732c48..5927f4cbd585 100644
--- a/shell/source/backends/localebe/localebackend.hxx
+++ b/shell/source/backends/localebe/localebackend.hxx
@@ -123,7 +123,7 @@ class LocaleBackend : public ::cppu::WeakImplHelper <
LocaleBackend();
/** Destructor */
- virtual ~LocaleBackend() ;
+ virtual ~LocaleBackend() override ;
private:
// Returns the user locale
diff --git a/shell/source/sessioninstall/SyncDbusSessionHelper.hxx b/shell/source/sessioninstall/SyncDbusSessionHelper.hxx
index 236f293586bf..afbfa92b47cf 100644
--- a/shell/source/sessioninstall/SyncDbusSessionHelper.hxx
+++ b/shell/source/sessioninstall/SyncDbusSessionHelper.hxx
@@ -21,7 +21,7 @@ namespace shell { namespace sessioninstall
{
public:
SyncDbusSessionHelper(css::uno::Reference< css::uno::XComponentContext> const&);
- virtual ~SyncDbusSessionHelper() {}
+ virtual ~SyncDbusSessionHelper() override {}
// XModify Methods
virtual void SAL_CALL InstallPackageFiles( ::sal_uInt32 xid, const css::uno::Sequence< OUString >& files, const OUString& interaction ) throw (css::uno::RuntimeException, std::exception) override;