diff options
author | Noel Grandin <noel@peralex.com> | 2016-05-05 10:44:53 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-05-05 10:52:43 +0200 |
commit | cca981b83ad80fc67a705c925db179c46814014f (patch) | |
tree | 621f833d8b9144c8b53a45a7ccef5b5b246ef58f /sd | |
parent | 138b2890927c5c856419ac1592f168ca6a072893 (diff) |
-Werror,-Winconsistent-missing-override
Change-Id: I14a8df27dc5bf8f16f5955d45f21f5f4079d79e0
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/sidebar/SlideBackground.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/ui/sidebar/SlideBackground.hxx b/sd/source/ui/sidebar/SlideBackground.hxx index a40e6f4e7cda..29be4612fd35 100644 --- a/sd/source/ui/sidebar/SlideBackground.hxx +++ b/sd/source/ui/sidebar/SlideBackground.hxx @@ -55,15 +55,15 @@ public: const css::uno::Reference<css::frame::XFrame>& rxFrame, SfxBindings* pBindings ); virtual ~SlideBackground(); - virtual void dispose(); + virtual void dispose() override; SfxBindings* GetBindings() { return mpBindings; } // Window - virtual void DataChanged (const DataChangedEvent& rEvent); + virtual void DataChanged (const DataChangedEvent& rEvent) override; virtual void NotifyItemUpdate( const sal_uInt16 nSID, const SfxItemState eState, const SfxPoolItem* pState, - const bool bIsEnabled); + const bool bIsEnabled) override; private: |