summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
Diffstat (limited to 'vcl')
-rw-r--r--vcl/inc/win/salframe.h2
-rw-r--r--vcl/win/source/window/salframe.cxx2
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;