summaryrefslogtreecommitdiff
path: root/include/vcl/vclenum.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-08-10 10:28:08 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-08-10 12:19:50 +0200
commit367fedcc4456a74cb2fc29a28279bef314bd47ff (patch)
treea63115d6cfa2b2a2e3c2c4d3a55f623e7ecfd6d5 /include/vcl/vclenum.hxx
parent183b0b0b6038ec1fafb9f65024a846c90493a873 (diff)
loplugin:unusedenumconstants
Change-Id: I54c0c1fca8ea5c89e71c6cd1110fad081ed3d334 Reviewed-on: https://gerrit.libreoffice.org/40953 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/vcl/vclenum.hxx')
-rw-r--r--include/vcl/vclenum.hxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/vcl/vclenum.hxx b/include/vcl/vclenum.hxx
index 15711cb9ea04..02c49e2c87d7 100644
--- a/include/vcl/vclenum.hxx
+++ b/include/vcl/vclenum.hxx
@@ -39,7 +39,6 @@ enum class MenuItemBits : sal_Int16
CHECKABLE = 0x0001,
RADIOCHECK = 0x0002,
AUTOCHECK = 0x0004,
- ABOUT = 0x0008,
HELP = 0x0010,
POPUPSELECT = 0x0020,
// These have been said to be a preliminary (sic) solution since 2007
@@ -49,7 +48,7 @@ enum class MenuItemBits : sal_Int16
};
namespace o3tl
{
- template<> struct typed_flags<MenuItemBits> : is_typed_flags<MenuItemBits, 0x1ff> {};
+ template<> struct typed_flags<MenuItemBits> : is_typed_flags<MenuItemBits, 0x1f7> {};
}
enum class ToolBoxItemBits