[Libreoffice-commits] core.git: xmloff/source

Stephan Bergmann sbergman at redhat.com
Thu May 12 12:22:13 UTC 2016


 xmloff/source/forms/propertyexport.hxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 42b7285efa5e633dc520cef3b724685078c0ee26
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Thu May 12 14:21:12 2016 +0200

    Fix bitmask
    
    ...from e82fe5f00afe0364fbcbfea3e91e10b85faae34c "Convert BOOL_ATTR to scoped
    enum"
    
    Change-Id: I78500163391eae2927ea96d3f14bf4ea5535b0f6

diff --git a/xmloff/source/forms/propertyexport.hxx b/xmloff/source/forms/propertyexport.hxx
index d81e586..d25e768 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


More information about the Libreoffice-commits mailing list