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

Stephan Bergmann sbergman at redhat.com
Mon May 30 09:19:34 UTC 2016


 include/tools/rc.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit ee1bf3538b139220f5f55778202e5606f4dd74c6
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Mon May 30 11:19:03 2016 +0200

    Fix bitmask
    
    Change-Id: I0da9c57b2b442bb4c4b34ae63507fb98e7fbbe51

diff --git a/include/tools/rc.h b/include/tools/rc.h
index eb531bf..90e593a 100644
--- a/include/tools/rc.h
+++ b/include/tools/rc.h
@@ -50,7 +50,7 @@ enum class RscWindowFlags {
     HelpId                   = 0x0200
 };
 namespace o3tl {
-    template<> struct typed_flags<RscWindowFlags> : is_typed_flags<RscWindowFlags, 0x07> {};
+    template<> struct typed_flags<RscWindowFlags> : is_typed_flags<RscWindowFlags, 0x37F> {};
 }
 
 // For "FixedImage" resource:


More information about the Libreoffice-commits mailing list