summaryrefslogtreecommitdiffstats
path: root/xmloff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-05-12 14:21:12 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-05-12 14:21:12 +0200
commit42b7285efa5e633dc520cef3b724685078c0ee26 (patch)
treeef3bad7bb671f181030cef740f04c2fb3a50e17b /xmloff
parentSilence -Werror,-Wimplicit-fallthrough under NDEBUG (diff)
downloadcore-42b7285efa5e633dc520cef3b724685078c0ee26.tar.gz
core-42b7285efa5e633dc520cef3b724685078c0ee26.zip
Fix bitmask
...from e82fe5f00afe0364fbcbfea3e91e10b85faae34c "Convert BOOL_ATTR to scoped enum" Change-Id: I78500163391eae2927ea96d3f14bf4ea5535b0f6
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/forms/propertyexport.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/forms/propertyexport.hxx b/xmloff/source/forms/propertyexport.hxx
index d81e58614fef..d25e768c0c8d 100644
--- a/xmloff/source/forms/propertyexport.hxx
+++ b/xmloff/source/forms/propertyexport.hxx
@@ -39,7 +39,7 @@ enum class BoolAttrFlags {
InverseSemantics = 0x04,
};
namespace o3tl {
- template<> struct typed_flags<BoolAttrFlags> : is_typed_flags<BoolAttrFlags, 0x0a> {};
+ template<> struct typed_flags<BoolAttrFlags> : is_typed_flags<BoolAttrFlags, 0x07> {};
}
namespace xmloff