diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-02-24 13:32:44 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-02-24 13:32:44 +0100 |
commit | 13afdc0b14494fc6d990ff52efbcaec2b07556d2 (patch) | |
tree | ce89fa85c0ef5e48317526f001f65710e5bb1365 /vcl/inc/win/salframe.h | |
parent | 9fab183d4d8b377b155c39952a534712b245c5a9 (diff) |
warning C4805: '==' : unsafe mix of type 'sal_Bool' and type 'bool'
Change-Id: I3719401a0eb68ba9204be19c2dd4f93617bf097c
Diffstat (limited to 'vcl/inc/win/salframe.h')
-rw-r--r-- | vcl/inc/win/salframe.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/inc/win/salframe.h b/vcl/inc/win/salframe.h index 2309a1b45b72..cddd366de440 100644 --- a/vcl/inc/win/salframe.h +++ b/vcl/inc/win/salframe.h @@ -61,7 +61,7 @@ public: sal_Bool mbSizeBorder; // has window a sizeable border sal_Bool mbNoIcon; // is an window without an icon sal_Bool mbFloatWin; // is a FloatingWindow - sal_Bool mbFullScreen; // TRUE: in full screen mode + bool mbFullScreen; // TRUE: in full screen mode sal_Bool mbPresentation; // TRUE: Presentation Mode running sal_Bool mbInShow; // innerhalb eines Show-Aufrufs sal_Bool mbRestoreMaximize; // Restore-Maximize |