diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-02-21 15:30:44 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-02-22 07:38:35 +0100 |
commit | de9acc1dd0b72d1af92ac4de97840d98d4977820 (patch) | |
tree | 232f6ead4601fb3b62cd01e2c6020b37f87f4222 /include/vcl/salnativewidgets.hxx | |
parent | 5923df69b46295c5686e5c91ea2a8fc7b46d8357 (diff) |
loplugin:unusedfields in vcl
maStatusText in HelpTextWindow is dead since
commit bd3ea40ed49074c4fa4439de7b5dea4fc3161880
Date: Fri Jan 21 14:48:58 2011 +0200
Remove ShowHelpStatusText and HideHelpStatusText and associated
cruft
Change-Id: I7a74e2a1b909a479f9338bd4da5fad06ccc25283
Reviewed-on: https://gerrit.libreoffice.org/68153
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/vcl/salnativewidgets.hxx')
-rw-r--r-- | include/vcl/salnativewidgets.hxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/vcl/salnativewidgets.hxx b/include/vcl/salnativewidgets.hxx index 0d90027e8fb6..03d9a0eee00e 100644 --- a/include/vcl/salnativewidgets.hxx +++ b/include/vcl/salnativewidgets.hxx @@ -301,15 +301,13 @@ class VCL_DLLPUBLIC ScrollbarValue : public ImplControlValue ControlState mnButton1State; ControlState mnButton2State; ControlState mnThumbState; - ControlState mnPage1State; - ControlState mnPage2State; ScrollbarValue() : ImplControlValue( ControlType::Scrollbar, 0 ) { mnMin = 0; mnMax = 0; mnCur = 0; mnVisibleSize = 0; mnButton1State = ControlState::NONE; mnButton2State = ControlState::NONE; - mnThumbState = ControlState::NONE; mnPage1State = ControlState::NONE; mnPage2State = ControlState::NONE; + mnThumbState = ControlState::NONE; }; virtual ~ScrollbarValue() override; virtual ScrollbarValue* clone() const override; |