diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-10-18 14:09:32 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-10-19 07:58:04 +0200 |
commit | ba80f637b82ef5df7c650ec301ca9ebb5f678f44 (patch) | |
tree | 4ce2956e796640b20f7abf3ad6a1ba40c64787bf /toolkit | |
parent | 265072a4cafd9f8552264448e2fc049ae3ac97e5 (diff) |
clang-tidy modernize-redundant-void-arg
Change-Id: Ia25ac2e40f29e5b766a4c5c013fb53274196f656
Reviewed-on: https://gerrit.libreoffice.org/61934
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'toolkit')
-rw-r--r-- | toolkit/source/awt/vclxspinbutton.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolkit/source/awt/vclxspinbutton.cxx b/toolkit/source/awt/vclxspinbutton.cxx index 2288524e8496..d0231442108e 100644 --- a/toolkit/source/awt/vclxspinbutton.cxx +++ b/toolkit/source/awt/vclxspinbutton.cxx @@ -95,7 +95,7 @@ namespace toolkit namespace { typedef void (SpinButton::*SetSpinButtonValue) (long); - typedef long (SpinButton::*GetSpinButtonValue) (void) const; + typedef long (SpinButton::*GetSpinButtonValue) () const; void lcl_setSpinButtonValue(vcl::Window* _pWindow, SetSpinButtonValue _pSetter, sal_Int32 _nValue ) |