summaryrefslogtreecommitdiff
path: root/include/vcl/salnativewidgets.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2016-09-16 16:08:56 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-09-18 11:02:45 +0000
commite592877844573fa5ab934b7ab3b13aaa33ed621d (patch)
tree37138edadc35f0fe1a4ee87bcce66e4d756af469 /include/vcl/salnativewidgets.hxx
parent17d7ac5c1a06d29cbeeb3efd245ebf2e6725da12 (diff)
loplugin:unusedenumvalues
Change-Id: Icf17f936ce6d07d0e152252833c8645cf9b1163b Reviewed-on: https://gerrit.libreoffice.org/28942 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/vcl/salnativewidgets.hxx')
-rw-r--r--include/vcl/salnativewidgets.hxx7
1 files changed, 1 insertions, 6 deletions
diff --git a/include/vcl/salnativewidgets.hxx b/include/vcl/salnativewidgets.hxx
index 72bae8843207..5d5bd1c2707d 100644
--- a/include/vcl/salnativewidgets.hxx
+++ b/include/vcl/salnativewidgets.hxx
@@ -78,10 +78,6 @@ enum class ControlType {
// all parts like slider, buttons
Scrollbar = 60,
Slider = 65,
-// Border around a group of related
-// items, perhaps also displaying
-// a label of identification
- Groupbox = 70,
// A separator line
Fixedline = 80,
// A toolbar control with buttons and a grip
@@ -220,7 +216,6 @@ enum class ControlState {
FOCUSED = 0x0002,
PRESSED = 0x0004,
ROLLOVER = 0x0008,
- HIDDEN = 0x0010,
DEFAULT = 0x0020,
SELECTED = 0x0040,
DOUBLEBUFFERING = 0x4000, ///< Set when the control is painted using double-buffering via VirtualDevice.
@@ -228,7 +223,7 @@ enum class ControlState {
};
namespace o3tl
{
- template<> struct typed_flags<ControlState> : is_typed_flags<ControlState, 0xc07f> {};
+ template<> struct typed_flags<ControlState> : is_typed_flags<ControlState, 0xc06f> {};
}
class ControlCacheKey