[Libreoffice-commits] core.git: vcl/inc
Douglas Mencken
dougmencken at gmail.com
Tue Mar 29 08:56:36 UTC 2016
vcl/inc/osx/salframe.h | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
New commits:
commit 4bb270345c4c2d50156f662e1c17477ac510743d
Author: Douglas Mencken <dougmencken at gmail.com>
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 <ci at libreoffice.org>
Reviewed-by: Stephan Bergmann <sbergman at redhat.com>
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
More information about the Libreoffice-commits
mailing list