From cc2fe8c763b7050f07968f31bcdb7e45b8c7464d Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Thu, 20 Sep 2018 07:27:20 +0200 Subject: 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 --- svtools/source/inc/iconviewimpl.hxx | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) (limited to 'svtools') 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 -- cgit