vcl/inc/brdwin.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit d5d8dac079a888568d263b85e0285c14ab27cc55 Author: Julien Nabet <[email protected]> AuthorDate: Sat Mar 28 22:50:05 2020 +0100 Commit: Noel Grandin <[email protected]> CommitDate: Sun Mar 29 13:49:10 2020 +0200 Fix is_typed_flags for BorderWindowHitTest (vcl/brdwin) Change-Id: If49cb7b6c3d385cc7d74fbcb0791bfb27d0be8d3 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/91318 Reviewed-by: Julien Nabet <[email protected]> Reviewed-by: Noel Grandin <[email protected]> Tested-by: Jenkins diff --git a/vcl/inc/brdwin.hxx b/vcl/inc/brdwin.hxx index c7da025a93fd..1dedce0e2ff2 100644 --- a/vcl/inc/brdwin.hxx +++ b/vcl/inc/brdwin.hxx @@ -60,7 +60,7 @@ enum class BorderWindowHitTest { Help = 0x4000, }; namespace o3tl { - template<> struct typed_flags<BorderWindowHitTest> : is_typed_flags<BorderWindowHitTest, 0xffff> {}; + template<> struct typed_flags<BorderWindowHitTest> : is_typed_flags<BorderWindowHitTest, 0x7fff> {}; }; enum class BorderWindowTitleType { _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
