[Libreoffice-commits] core.git: include/svl

Eike Rathke (via logerrit) logerrit at kemper.freedesktop.org
Wed May 8 11:13:31 UTC 2019


 include/svl/zforlist.hxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit d27ad84ec7a0aafb07d6a6152c686f4bc802f661
Author:     Eike Rathke <erack at redhat.com>
AuthorDate: Wed May 8 10:43:53 2019 +0200
Commit:     Eike Rathke <erack at redhat.com>
CommitDate: Wed May 8 13:12:31 2019 +0200

    Fix typed flags bitmask, tdf#125099 follow-up
    
    Change-Id: I25327cfcafc9e1f2e88b388677853c638dd9b0e6
    Reviewed-on: https://gerrit.libreoffice.org/71946
    Reviewed-by: Eike Rathke <erack at redhat.com>
    Tested-by: Jenkins

diff --git a/include/svl/zforlist.hxx b/include/svl/zforlist.hxx
index 0a08f4fac04f..8caa7fb3d276 100644
--- a/include/svl/zforlist.hxx
+++ b/include/svl/zforlist.hxx
@@ -116,7 +116,7 @@ enum class SvNumFormatType : sal_Int16
      DURATION = css::util::NumberFormat::DURATION, // 8196
 };
 namespace o3tl {
-    template<> struct typed_flags<SvNumFormatType> : is_typed_flags<SvNumFormatType, 0x2dff> {};
+    template<> struct typed_flags<SvNumFormatType> : is_typed_flags<SvNumFormatType, 0x3dff> {};
 }
 
 /** enum values for <method>SvNumberFormatter::GetFormatIndex</method>


More information about the Libreoffice-commits mailing list