summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2018-09-20 07:27:20 +0200
committerStephan Bergmann <sbergman@redhat.com>2018-09-20 08:37:20 +0200
commitcc2fe8c763b7050f07968f31bcdb7e45b8c7464d (patch)
tree499b8644a21d45f1317cfb9fc891e2f6d683802b /svtools
parent475ea37809b5bec369d02a5ab500fac46ab40f0a (diff)
Replace SAL_OVERRIDE with override in internal code
Change-Id: Ifa446647b11fd1f1b0dc6a991b752480545634db Reviewed-on: https://gerrit.libreoffice.org/60788 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/inc/iconviewimpl.hxx34
1 files changed, 17 insertions, 17 deletions
diff --git a/svtools/source/inc/iconviewimpl.hxx b/svtools/source/inc/iconviewimpl.hxx
index dec441b6ce1c..516923f3f40c 100644
--- a/svtools/source/inc/iconviewimpl.hxx
+++ b/svtools/source/inc/iconviewimpl.hxx
@@ -30,37 +30,37 @@ class IconViewImpl : public SvImpLBox
public:
IconViewImpl( SvTreeListBox* pTreeListBox, SvTreeList* pTreeList, WinBits nWinStyle );
- void KeyDown( bool bPageDown ) SAL_OVERRIDE;
+ void KeyDown( bool bPageDown ) override;
- void KeyUp( bool bPageUp ) SAL_OVERRIDE;
+ void KeyUp( bool bPageUp ) override;
- Point GetEntryPosition( SvTreeListEntry* pEntry ) const SAL_OVERRIDE;
+ Point GetEntryPosition( SvTreeListEntry* pEntry ) const override;
- SvTreeListEntry* GetClickedEntry( const Point& rPoint ) const SAL_OVERRIDE;
+ SvTreeListEntry* GetClickedEntry( const Point& rPoint ) const override;
- bool IsEntryInView( SvTreeListEntry* pEntry ) const SAL_OVERRIDE;
+ bool IsEntryInView( SvTreeListEntry* pEntry ) const override;
- void Paint( vcl::RenderContext& rRenderContext, const tools::Rectangle& rRect ) SAL_OVERRIDE;
+ void Paint( vcl::RenderContext& rRenderContext, const tools::Rectangle& rRect ) override;
// returns 0 if position is just past the last entry
- SvTreeListEntry* GetEntry( const Point& rPoint ) const SAL_OVERRIDE;
+ SvTreeListEntry* GetEntry( const Point& rPoint ) const override;
- void UpdateAll( bool bInvalidateCompleteView ) SAL_OVERRIDE;
+ void UpdateAll( bool bInvalidateCompleteView ) override;
- bool KeyInput( const KeyEvent& ) SAL_OVERRIDE;
+ bool KeyInput( const KeyEvent& ) override;
- void InvalidateEntry( long nId ) const SAL_OVERRIDE;
+ void InvalidateEntry( long nId ) const override;
protected:
- long GetEntryLine( SvTreeListEntry* pEntry ) const SAL_OVERRIDE;
+ long GetEntryLine( SvTreeListEntry* pEntry ) const override;
- void CursorUp() SAL_OVERRIDE;
- void CursorDown() SAL_OVERRIDE;
- void PageDown( sal_uInt16 nDelta ) SAL_OVERRIDE;
- void PageUp( sal_uInt16 nDelta ) SAL_OVERRIDE;
+ void CursorUp() override;
+ void CursorDown() override;
+ void PageDown( sal_uInt16 nDelta ) override;
+ void PageUp( sal_uInt16 nDelta ) override;
- void SyncVerThumb() SAL_OVERRIDE;
- void AdjustScrollBars( Size& rSize ) SAL_OVERRIDE;
+ void SyncVerThumb() override;
+ void AdjustScrollBars( Size& rSize ) override;
};
#endif // INCLUDED_SVTOOLS_SOURCE_INC_ICONVIEWIMPL_HXX