From eb7aa9f1fa58ff43d4a974aec868f627755ce152 Mon Sep 17 00:00:00 2001 From: Adam Co Date: Mon, 20 Oct 2014 13:37:51 +0300 Subject: fix problem with gcc compiler complaining on variable type Change-Id: I9a16e24e79d22b0af1710d6ac25eaa5fb19c71ff Reviewed-on: https://gerrit.libreoffice.org/12047 Reviewed-by: Noel Grandin Tested-by: Noel Grandin --- include/rsc/rsc-vcl-shared-types.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, -- cgit