diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-10-12 16:04:04 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-10-12 17:52:29 +0200 |
commit | b36963c0a6a09f70ca6d8d607dd3249a3496497d (patch) | |
tree | 33e06dc8d227957cb31355277fb5cf20b9918628 /svtools/inc/roadmap.hxx | |
parent | b08247a12b43fcd9f86ecd912fce7d69a3e66061 (diff) |
Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY code
Change-Id: I2ea407acd763ef2d7dae2d3b8f32525523ac8274
Diffstat (limited to 'svtools/inc/roadmap.hxx')
-rw-r--r-- | svtools/inc/roadmap.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/svtools/inc/roadmap.hxx b/svtools/inc/roadmap.hxx index 0e5a23d6fae6..a79cd1894c45 100644 --- a/svtools/inc/roadmap.hxx +++ b/svtools/inc/roadmap.hxx @@ -45,13 +45,13 @@ class SVT_DLLPUBLIC ORoadmap : public Control, public RoadmapTypes protected: RoadmapImpl* m_pImpl; // Window overridables - void Paint(vcl::RenderContext& rRenderContext, const Rectangle& _rRect) SAL_OVERRIDE; + void Paint(vcl::RenderContext& rRenderContext, const Rectangle& _rRect) override; void implInit(vcl::RenderContext& rRenderContext); public: ORoadmap( vcl::Window* _pParent, WinBits _nWinStyle = 0 ); virtual ~ORoadmap( ); - virtual void dispose() SAL_OVERRIDE; + virtual void dispose() override; void SetRoadmapBitmap( const BitmapEx& maBitmap, bool _bInvalidate = true ); @@ -78,11 +78,11 @@ public: void SetItemSelectHdl( const Link<LinkParamNone*,void>& _rHdl ); Link<LinkParamNone*,void> GetItemSelectHdl( ) const; - virtual void DataChanged( const DataChangedEvent& rDCEvt ) SAL_OVERRIDE; - virtual void GetFocus() SAL_OVERRIDE; + virtual void DataChanged( const DataChangedEvent& rDCEvt ) override; + virtual void GetFocus() override; protected: - bool PreNotify( NotifyEvent& rNEvt ) SAL_OVERRIDE; + bool PreNotify( NotifyEvent& rNEvt ) override; protected: /// called when an item has been selected by any means |