diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-09-14 12:53:30 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-09-14 12:53:30 +0200 |
commit | bd132e558df9e1cfe48beb7a67f9237ed78465c5 (patch) | |
tree | cebcc9e13a9296f852de48e0ec658dd71ac91c07 /vcl/osx | |
parent | fc6744603ab8bb5a00c4f97435b5e509bdeaeb94 (diff) |
loplugin:override
Change-Id: Ica137897f02c5caa4c4891f75531ada3957025d9
Diffstat (limited to 'vcl/osx')
-rw-r--r-- | vcl/osx/DataFlavorMapping.cxx | 2 | ||||
-rw-r--r-- | vcl/osx/DragSource.hxx | 2 | ||||
-rw-r--r-- | vcl/osx/DragSourceContext.hxx | 2 | ||||
-rw-r--r-- | vcl/osx/DropTarget.hxx | 2 | ||||
-rw-r--r-- | vcl/osx/OSXTransferable.hxx | 2 | ||||
-rw-r--r-- | vcl/osx/a11yfocuslistener.hxx | 2 | ||||
-rw-r--r-- | vcl/osx/clipboard.hxx | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/vcl/osx/DataFlavorMapping.cxx b/vcl/osx/DataFlavorMapping.cxx index 45a3cc507ebd..2b7b9a001351 100644 --- a/vcl/osx/DataFlavorMapping.cxx +++ b/vcl/osx/DataFlavorMapping.cxx @@ -148,7 +148,7 @@ class DataProviderBaseImpl : public DataProvider public: DataProviderBaseImpl(const Any& data); DataProviderBaseImpl(id data); - virtual ~DataProviderBaseImpl(); + virtual ~DataProviderBaseImpl() override; protected: Any mData; diff --git a/vcl/osx/DragSource.hxx b/vcl/osx/DragSource.hxx index ea16c2606bb5..597e0728516e 100644 --- a/vcl/osx/DragSource.hxx +++ b/vcl/osx/DragSource.hxx @@ -74,7 +74,7 @@ class DragSource : public ::cppu::BaseMutex, { public: DragSource(); - virtual ~DragSource(); + virtual ~DragSource() override; DragSource(const DragSource&) = delete; DragSource& operator=(const DragSource&) = delete; diff --git a/vcl/osx/DragSourceContext.hxx b/vcl/osx/DragSourceContext.hxx index 0aa74c622015..833b7d1093ea 100644 --- a/vcl/osx/DragSourceContext.hxx +++ b/vcl/osx/DragSourceContext.hxx @@ -35,7 +35,7 @@ class DragSourceContext: public cppu::BaseMutex, { public: DragSourceContext(); - virtual ~DragSourceContext(); + virtual ~DragSourceContext() override; DragSourceContext(const DragSourceContext&) = delete; DragSourceContext& operator=(const DragSourceContext&) = delete; diff --git a/vcl/osx/DropTarget.hxx b/vcl/osx/DropTarget.hxx index 7659eed2eccc..ef0c82b190fd 100644 --- a/vcl/osx/DropTarget.hxx +++ b/vcl/osx/DropTarget.hxx @@ -79,7 +79,7 @@ class DropTarget: public cppu::BaseMutex, { public: DropTarget(); - virtual ~DropTarget(); + virtual ~DropTarget() override; DropTarget(const DropTarget&) = delete; DropTarget& operator=(const DropTarget&) = delete; diff --git a/vcl/osx/OSXTransferable.hxx b/vcl/osx/OSXTransferable.hxx index 28f6efc99987..961c9cefe7a4 100644 --- a/vcl/osx/OSXTransferable.hxx +++ b/vcl/osx/OSXTransferable.hxx @@ -41,7 +41,7 @@ public: DataFlavorMapperPtr_t pDataFlavorMapper, NSPasteboard* pasteboard); - virtual ~OSXTransferable(); + virtual ~OSXTransferable() override; OSXTransferable(const OSXTransferable&) = delete; OSXTransferable& operator=(const OSXTransferable&) = delete; diff --git a/vcl/osx/a11yfocuslistener.hxx b/vcl/osx/a11yfocuslistener.hxx index 78011074f416..22620b863229 100644 --- a/vcl/osx/a11yfocuslistener.hxx +++ b/vcl/osx/a11yfocuslistener.hxx @@ -30,7 +30,7 @@ class AquaA11yFocusListener : public KeyboardFocusListener static rtl::Reference< AquaA11yFocusListener > theListener; AquaA11yFocusListener(); - virtual ~AquaA11yFocusListener() {}; + virtual ~AquaA11yFocusListener() override {}; public: static rtl::Reference< AquaA11yFocusListener > const & get(); diff --git a/vcl/osx/clipboard.hxx b/vcl/osx/clipboard.hxx index 38375f463fc2..8a45c037b5b3 100644 --- a/vcl/osx/clipboard.hxx +++ b/vcl/osx/clipboard.hxx @@ -81,7 +81,7 @@ public: AquaClipboard(NSPasteboard* pasteboard = nullptr, bool bUseSystemClipboard = true); - virtual ~AquaClipboard(); + virtual ~AquaClipboard() override; AquaClipboard(const AquaClipboard&) = delete; AquaClipboard& operator=(const AquaClipboard&) = delete; |