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 /include/sfx2/controlwrapper.hxx | |
parent | b08247a12b43fcd9f86ecd912fce7d69a3e66061 (diff) |
Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY code
Change-Id: I2ea407acd763ef2d7dae2d3b8f32525523ac8274
Diffstat (limited to 'include/sfx2/controlwrapper.hxx')
-rw-r--r-- | include/sfx2/controlwrapper.hxx | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/include/sfx2/controlwrapper.hxx b/include/sfx2/controlwrapper.hxx index 5ef71e41e0bc..d99035758a06 100644 --- a/include/sfx2/controlwrapper.hxx +++ b/include/sfx2/controlwrapper.hxx @@ -200,7 +200,7 @@ public: /** Enables, disables, shows, or hides the control. @descr Does nothing, if the corresponding parameter is TRISTATE_INDET. */ - virtual void ModifyControl( TriState eEnable, TriState eShow ) SAL_OVERRIDE; + virtual void ModifyControl( TriState eEnable, TriState eShow ) override; /** Derived classes return the value the control contains. */ virtual ValueT GetControlValue() const = 0; @@ -225,11 +225,11 @@ class SFX2_DLLPUBLIC DummyWindowWrapper: public: explicit DummyWindowWrapper( vcl::Window& rWindow ); - virtual bool IsControlDontKnow() const SAL_OVERRIDE; - virtual void SetControlDontKnow( bool ) SAL_OVERRIDE; + virtual bool IsControlDontKnow() const override; + virtual void SetControlDontKnow( bool ) override; - virtual void* GetControlValue() const SAL_OVERRIDE; - virtual void SetControlValue( void* ) SAL_OVERRIDE; + virtual void* GetControlValue() const override; + virtual void SetControlValue( void* ) override; }; @@ -241,11 +241,11 @@ class SFX2_DLLPUBLIC CheckBoxWrapper: public: explicit CheckBoxWrapper( CheckBox& rCheckBox ); - virtual bool IsControlDontKnow() const SAL_OVERRIDE; - virtual void SetControlDontKnow( bool bSet ) SAL_OVERRIDE; + virtual bool IsControlDontKnow() const override; + virtual void SetControlDontKnow( bool bSet ) override; - virtual bool GetControlValue() const SAL_OVERRIDE; - virtual void SetControlValue( bool bValue ) SAL_OVERRIDE; + virtual bool GetControlValue() const override; + virtual void SetControlValue( bool bValue ) override; }; @@ -262,11 +262,11 @@ public: virtual ~ColorListBoxWrapper(); - virtual bool IsControlDontKnow() const SAL_OVERRIDE; - virtual void SetControlDontKnow( bool bSet ) SAL_OVERRIDE; + virtual bool IsControlDontKnow() const override; + virtual void SetControlDontKnow( bool bSet ) override; - virtual Color GetControlValue() const SAL_OVERRIDE; - virtual void SetControlValue( Color aColor ) SAL_OVERRIDE; + virtual Color GetControlValue() const override; + virtual void SetControlValue( Color aColor ) override; }; @@ -436,12 +436,12 @@ public: void RegisterControlWrapper( ControlWrapperBase& rWrapper ); /** Enables, disables, shows, or hides the registered controls. */ - virtual void ModifyControl( TriState eEnable, TriState eShow ) SAL_OVERRIDE; + virtual void ModifyControl( TriState eEnable, TriState eShow ) override; /** Returns true if all registered controls are in "don't know" state. */ - virtual bool IsControlDontKnow() const SAL_OVERRIDE; + virtual bool IsControlDontKnow() const override; /** Sets all registered controls to "don't know" state. */ - virtual void SetControlDontKnow( bool bSet ) SAL_OVERRIDE; + virtual void SetControlDontKnow( bool bSet ) override; private: std::unique_ptr< MultiControlWrapperHelper_Impl > mxImpl; |