diff options
author | Douglas Mencken <dougmencken@gmail.com> | 2014-10-28 13:18:59 -0400 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-03-29 08:55:57 +0000 |
commit | 4bb270345c4c2d50156f662e1c17477ac510743d (patch) | |
tree | 81ed413b598514856000fb676fb56fd8c56d5f57 /vcl/inc | |
parent | e81ad8c8ed960cf0765a4c3896b5ee449c973cd0 (diff) |
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@libreoffice.org>
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'vcl/inc')
-rw-r--r-- | vcl/inc/osx/salframe.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/vcl/inc/osx/salframe.h b/vcl/inc/osx/salframe.h index ac885c9eb2da..f6520d471e76 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 |