summaryrefslogtreecommitdiff
path: root/vcl/source/components
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/components')
-rw-r--r--vcl/source/components/dtranscomp.cxx8
-rw-r--r--vcl/source/components/fontident.cxx2
2 files changed, 5 insertions, 5 deletions
diff --git a/vcl/source/components/dtranscomp.cxx b/vcl/source/components/dtranscomp.cxx
index 610868196601..c58835b32b2b 100644
--- a/vcl/source/components/dtranscomp.cxx
+++ b/vcl/source/components/dtranscomp.cxx
@@ -68,7 +68,7 @@ public:
XServiceInfo
>( m_aMutex )
{}
- virtual ~GenericClipboard();
+ virtual ~GenericClipboard() override;
/*
* XServiceInfo
@@ -209,7 +209,7 @@ class ClipboardFactory : public ::cppu::WeakComponentImplHelper<
osl::Mutex m_aMutex;
public:
ClipboardFactory();
- virtual ~ClipboardFactory();
+ virtual ~ClipboardFactory() override;
/*
* XSingleServiceFactory
@@ -273,7 +273,7 @@ class GenericDragSource : public cppu::WeakComponentImplHelper<
osl::Mutex m_aMutex;
public:
GenericDragSource() : WeakComponentImplHelper( m_aMutex ) {}
- virtual ~GenericDragSource();
+ virtual ~GenericDragSource() override;
// XDragSource
virtual sal_Bool SAL_CALL isDragImageSupported() throw(std::exception) override;
@@ -389,7 +389,7 @@ class GenericDropTarget : public cppu::WeakComponentImplHelper<
public:
GenericDropTarget() : WeakComponentImplHelper( m_aMutex )
{}
- virtual ~GenericDropTarget();
+ virtual ~GenericDropTarget() override;
// XInitialization
virtual void SAL_CALL initialize( const Sequence< Any >& args ) throw ( Exception, std::exception ) override;
diff --git a/vcl/source/components/fontident.cxx b/vcl/source/components/fontident.cxx
index 3315e1b937db..11d441830855 100644
--- a/vcl/source/components/fontident.cxx
+++ b/vcl/source/components/fontident.cxx
@@ -50,7 +50,7 @@ class FontIdentificator : public ::cppu::WeakAggImplHelper3< XMaterialHolder, XI
Font m_aFont;
public:
FontIdentificator() {}
- virtual ~FontIdentificator();
+ virtual ~FontIdentificator() override;
// XServiceInfo
virtual OUString SAL_CALL getImplementationName( ) throw (RuntimeException, std::exception) override;