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 | |
parent | 9fab183d4d8b377b155c39952a534712b245c5a9 (diff) |
warning C4805: '==' : unsafe mix of type 'sal_Bool' and type 'bool'
Change-Id: I3719401a0eb68ba9204be19c2dd4f93617bf097c
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/inc/win/salframe.h | 2 | ||||
-rw-r--r-- | vcl/win/source/window/salframe.cxx | 2 |
2 files changed, 2 insertions, 2 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 diff --git a/vcl/win/source/window/salframe.cxx b/vcl/win/source/window/salframe.cxx index 390d051cb320..aaae35c8b72f 100644 --- a/vcl/win/source/window/salframe.cxx +++ b/vcl/win/source/window/salframe.cxx @@ -867,7 +867,7 @@ WinSalFrame::WinSalFrame() mbBorder = FALSE; mbFixBorder = FALSE; mbSizeBorder = FALSE; - mbFullScreen = FALSE; + mbFullScreen = false; mbPresentation = FALSE; mbInShow = FALSE; mbRestoreMaximize = FALSE; |