diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-04-24 19:49:18 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-04-24 19:49:18 +0300 |
commit | e5e051b23b3b0a767b1d5d22c65d8d648c251fd3 (patch) | |
tree | 9c960e56e4a01145b929bb11e3399db85a5f6609 /vcl | |
parent | 192eaec65f7d9cf69cf085039f19f956362c806b (diff) |
WaE: overriding virtual function declaration not marked 'override'
Change-Id: I1a7172cb9b2663b84874b3c3f277fb3b3786c7a4
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/window/menu.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/source/window/menu.cxx b/vcl/source/window/menu.cxx index 5c4bb1635b12..cd174a74d573 100644 --- a/vcl/source/window/menu.cxx +++ b/vcl/source/window/menu.cxx @@ -505,11 +505,11 @@ private: DECL_LINK(AutoScroll, void *); DECL_LINK( ShowHideListener, VclWindowEvent* ); - void StateChanged( StateChangedType nType ) SAL_OVERRIDE; - void DataChanged( const DataChangedEvent& rDCEvt ) SAL_OVERRIDE; + virtual void StateChanged( StateChangedType nType ) SAL_OVERRIDE; + virtual void DataChanged( const DataChangedEvent& rDCEvt ) SAL_OVERRIDE; protected: Region ImplCalcClipRegion( bool bIncludeLogo = true ) const; - void ImplInitClipRegion(); + virtual void ImplInitClipRegion() SAL_OVERRIDE; void ImplDrawScroller( bool bUp ); using Window::ImplScroll; void ImplScroll( const Point& rMousePos ); |