summaryrefslogtreecommitdiff
path: root/sc/source/ui/sidebar
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-03-27 18:12:18 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-03-27 18:12:18 +0100
commit567ef6d5782cdb729b49005caf6005610ce03e22 (patch)
tree7e3be1da41382e555d9091914ef7e064852a4fd4 /sc/source/ui/sidebar
parentc36daa01f444ebad799c1cc7a106f1b4bb3c3d12 (diff)
Second batch of adding SAL_OVERRIDE to overriding function declarations
...mostly done with a rewriting Clang plugin, with just some manual tweaking necessary to fix poor macro usage. Change-Id: Ie656f9d653fc716f72ac175925272696d509038f
Diffstat (limited to 'sc/source/ui/sidebar')
-rw-r--r--sc/source/ui/sidebar/AlignmentPropertyPanel.hxx6
-rw-r--r--sc/source/ui/sidebar/CellAppearancePropertyPanel.hxx6
-rw-r--r--sc/source/ui/sidebar/CellLineStyleControl.hxx2
-rw-r--r--sc/source/ui/sidebar/CellLineStyleValueSet.hxx2
-rw-r--r--sc/source/ui/sidebar/NumberFormatPropertyPanel.hxx6
5 files changed, 11 insertions, 11 deletions
diff --git a/sc/source/ui/sidebar/AlignmentPropertyPanel.hxx b/sc/source/ui/sidebar/AlignmentPropertyPanel.hxx
index ecda42376400..a2d041984556 100644
--- a/sc/source/ui/sidebar/AlignmentPropertyPanel.hxx
+++ b/sc/source/ui/sidebar/AlignmentPropertyPanel.hxx
@@ -46,16 +46,16 @@ public:
SfxBindings* pBindings);
virtual void DataChanged(
- const DataChangedEvent& rEvent);
+ const DataChangedEvent& rEvent) SAL_OVERRIDE;
virtual void HandleContextChange(
- const ::sfx2::sidebar::EnumContext aContext);
+ const ::sfx2::sidebar::EnumContext aContext) SAL_OVERRIDE;
virtual void NotifyItemUpdate(
const sal_uInt16 nSId,
const SfxItemState eState,
const SfxPoolItem* pState,
- const bool bIsEnabled);
+ const bool bIsEnabled) SAL_OVERRIDE;
SfxBindings* GetBindings();
diff --git a/sc/source/ui/sidebar/CellAppearancePropertyPanel.hxx b/sc/source/ui/sidebar/CellAppearancePropertyPanel.hxx
index ee253952172e..0847f57e0f65 100644
--- a/sc/source/ui/sidebar/CellAppearancePropertyPanel.hxx
+++ b/sc/source/ui/sidebar/CellAppearancePropertyPanel.hxx
@@ -54,16 +54,16 @@ public:
SfxBindings* pBindings);
virtual void DataChanged(
- const DataChangedEvent& rEvent);
+ const DataChangedEvent& rEvent) SAL_OVERRIDE;
virtual void HandleContextChange(
- const ::sfx2::sidebar::EnumContext aContext);
+ const ::sfx2::sidebar::EnumContext aContext) SAL_OVERRIDE;
virtual void NotifyItemUpdate(
const sal_uInt16 nSId,
const SfxItemState eState,
const SfxPoolItem* pState,
- const bool bIsEnabled);
+ const bool bIsEnabled) SAL_OVERRIDE;
SfxBindings* GetBindings();
diff --git a/sc/source/ui/sidebar/CellLineStyleControl.hxx b/sc/source/ui/sidebar/CellLineStyleControl.hxx
index b23cb9039437..36e14a699366 100644
--- a/sc/source/ui/sidebar/CellLineStyleControl.hxx
+++ b/sc/source/ui/sidebar/CellLineStyleControl.hxx
@@ -47,7 +47,7 @@ private:
public:
CellLineStyleControl(Window* pParent, CellAppearancePropertyPanel& rPanel);
- void GetFocus();
+ void GetFocus() SAL_OVERRIDE;
void SetLineStyleSelect(sal_uInt16 out, sal_uInt16 in, sal_uInt16 dis);
ValueSet& GetValueSet()
diff --git a/sc/source/ui/sidebar/CellLineStyleValueSet.hxx b/sc/source/ui/sidebar/CellLineStyleValueSet.hxx
index 971688c7bff8..694cabdb8d9b 100644
--- a/sc/source/ui/sidebar/CellLineStyleValueSet.hxx
+++ b/sc/source/ui/sidebar/CellLineStyleValueSet.hxx
@@ -38,7 +38,7 @@ public:
void SetUnit(const OUString* str);
void SetSelItem(sal_uInt16 nSel);
- virtual void UserDraw( const UserDrawEvent& rUDEvt );
+ virtual void UserDraw( const UserDrawEvent& rUDEvt ) SAL_OVERRIDE;
};
} } // end of namespace svx::sidebar
diff --git a/sc/source/ui/sidebar/NumberFormatPropertyPanel.hxx b/sc/source/ui/sidebar/NumberFormatPropertyPanel.hxx
index 2630204fce71..237ccc5de726 100644
--- a/sc/source/ui/sidebar/NumberFormatPropertyPanel.hxx
+++ b/sc/source/ui/sidebar/NumberFormatPropertyPanel.hxx
@@ -43,16 +43,16 @@ public:
SfxBindings* pBindings);
virtual void DataChanged(
- const DataChangedEvent& rEvent);
+ const DataChangedEvent& rEvent) SAL_OVERRIDE;
virtual void HandleContextChange(
- const ::sfx2::sidebar::EnumContext aContext);
+ const ::sfx2::sidebar::EnumContext aContext) SAL_OVERRIDE;
virtual void NotifyItemUpdate(
const sal_uInt16 nSId,
const SfxItemState eState,
const SfxPoolItem* pState,
- const bool bIsEnabled);
+ const bool bIsEnabled) SAL_OVERRIDE;
SfxBindings* GetBindings();