vcl/inc/osx/salframe.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-)
New commits: commit 4bb270345c4c2d50156f662e1c17477ac510743d Author: Douglas Mencken <[email protected]> Date: Tue Oct 28 13:18:59 2014 -0400 remove unecessary bitfield from AquaSalFrame it also makes GCC not complain as âtrying to encode non-integer type as a bitfieldâ Change-Id: I3330dd23a214c2a37814d02317b7a5ea252ff4af Reviewed-on: https://gerrit.libreoffice.org/23563 Tested-by: Jenkins <[email protected]> Reviewed-by: Stephan Bergmann <[email protected]> diff --git a/vcl/inc/osx/salframe.h b/vcl/inc/osx/salframe.h index ac885c9..f6520d4 100644 --- a/vcl/inc/osx/salframe.h +++ b/vcl/inc/osx/salframe.h @@ -61,13 +61,13 @@ public: int mnMaxWidth; // max. client width in pixels int mnMaxHeight; // max. client height in pixels NSRect maFullScreenRect; // old window size when in FullScreen - bool mbGraphics:1; // is Graphics used? - bool mbFullScreen:1; // is Window in FullScreen? - bool mbShown:1; - bool mbInitShow:1; - bool mbPositioned:1; - bool mbSized:1; - bool mbPresentation:1; + bool mbGraphics; // is Graphics used? + bool mbFullScreen; // is Window in FullScreen? + bool mbShown; + bool mbInitShow; + bool mbPositioned; + bool mbSized; + bool mbPresentation; SalFrameStyleFlags mnStyle; unsigned int mnStyleMask; // our style mask from NSWindow creation
_______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
