summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Co <rattles2013@gmail.com>2014-10-20 13:37:51 +0300
committerNoel Grandin <noelgrandin@gmail.com>2014-10-20 10:43:11 +0000
commiteb7aa9f1fa58ff43d4a974aec868f627755ce152 (patch)
treeea5e75a316e5d4f8a7d0e67c98ac084e46cf76f5
parent87118d5adf92124450ba688f2643cc9447304976 (diff)
fix problem with gcc compiler complaining on variable type
Change-Id: I9a16e24e79d22b0af1710d6ac25eaa5fb19c71ff Reviewed-on: https://gerrit.libreoffice.org/12047 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
-rw-r--r--include/rsc/rsc-vcl-shared-types.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/rsc/rsc-vcl-shared-types.hxx b/include/rsc/rsc-vcl-shared-types.hxx
index 1c1441204026..1da829d46c15 100644
--- a/include/rsc/rsc-vcl-shared-types.hxx
+++ b/include/rsc/rsc-vcl-shared-types.hxx
@@ -49,7 +49,7 @@ typedef sal_uInt16 MenuItemBits;
#define MIB_ICON ((MenuItemBits)0x0080)
#define MIB_TEXT ((MenuItemBits)0x0100)
-enum class ToolBoxItemBits : sal_uInt16
+enum class ToolBoxItemBits
{
NONE = 0x0000,
CHECKABLE = 0x0001,