diff options
author | Noel <noelgrandin@gmail.com> | 2020-12-14 13:55:49 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-12-14 14:34:06 +0100 |
commit | c521e614359d236405754134a54e8a05bdb1c44c (patch) | |
tree | b945830e091da74f768c48008734dd8e9042082f /include | |
parent | d98cf29aa4e5ce14f0c96a18be563f5ce36879df (diff) |
loplugin:unusedenumconstants
Change-Id: I49996ad433409a9189c0f7adc997858e1512f40c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/107687
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/menu.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/vcl/menu.hxx b/include/vcl/menu.hxx index 3838395601ac..6e27a9157a87 100644 --- a/include/vcl/menu.hxx +++ b/include/vcl/menu.hxx @@ -71,7 +71,6 @@ enum class PopupMenuFlags NONE = 0x0000, ExecuteDown = 0x0001, ExecuteUp = 0x0002, - ExecuteLeft = 0x0004, ExecuteRight = 0x0008, NoMouseUpClose = 0x0010, //If there isn't enough space to put the menu where it wants @@ -84,7 +83,7 @@ enum class PopupMenuFlags namespace o3tl { - template<> struct typed_flags<PopupMenuFlags> : is_typed_flags<PopupMenuFlags, 0x003f> {}; + template<> struct typed_flags<PopupMenuFlags> : is_typed_flags<PopupMenuFlags, 0x003b> {}; } enum class MenuFlags |