diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-08-18 16:38:48 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-08-19 06:53:51 +0200 |
commit | 50acead19bd13a344f8ca9b3879f8e8cb0b24eb7 (patch) | |
tree | 89a87c4192744c95a6626d78b80c63cff3fdcf54 /include/vcl/slider.hxx | |
parent | 4105174973aaabc25148e53571b7a4fc356098de (diff) |
convert WB_SLIDERSET to a bool field
Change-Id: I8a3767e162a14069937d52f5eb57ae5cd7f3fa7b
Reviewed-on: https://gerrit.libreoffice.org/41302
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/vcl/slider.hxx')
-rw-r--r-- | include/vcl/slider.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/vcl/slider.hxx b/include/vcl/slider.hxx index f4536b4c9af6..879340fc387f 100644 --- a/include/vcl/slider.hxx +++ b/include/vcl/slider.hxx @@ -49,6 +49,7 @@ private: ScrollType meScrollType; bool mbCalcSize; bool mbFullDrag; + bool mbScrollTypeSet; VclPtr<NumericField> mpLinkedField; @@ -104,6 +105,7 @@ public: long GetLineSize() const { return mnLineSize; } void SetPageSize( long nNewSize ) { mnPageSize = nNewSize; } long GetPageSize() const { return mnPageSize; } + void SetScrollTypeSet(bool b) { mbScrollTypeSet = b; } Size CalcWindowSizePixel(); |