summaryrefslogtreecommitdiff
path: root/sfx2/source/view/impviewframe.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-04-07 09:15:28 +0200
committerNoel Grandin <noel@peralex.com>2014-04-07 13:53:50 +0200
commit74fdda0cd41d97b6c97d2115584ee48fd552514e (patch)
treefa29308f180abbd7dec4c16f5603604a15fa079e /sfx2/source/view/impviewframe.hxx
parent1eee88dd6bf2c647aa3458d33a5f45c51c024186 (diff)
sfx2: sal_Bool->bool
Change-Id: I48ae51781f64e60deb0c03352087100729c8c3cd
Diffstat (limited to 'sfx2/source/view/impviewframe.hxx')
-rw-r--r--sfx2/source/view/impviewframe.hxx22
1 files changed, 11 insertions, 11 deletions
diff --git a/sfx2/source/view/impviewframe.hxx b/sfx2/source/view/impviewframe.hxx
index d63a635b8c9d..35c65a54615c 100644
--- a/sfx2/source/view/impviewframe.hxx
+++ b/sfx2/source/view/impviewframe.hxx
@@ -41,15 +41,15 @@ struct SfxViewFrame_Impl
Window* pFocusWin;
sal_uInt16 nDocViewNo;
sal_uInt16 nCurViewId;
- sal_Bool bResizeInToOut:1;
- sal_Bool bDontOverwriteResizeInToOut:1;
- sal_Bool bObjLocked:1;
- sal_Bool bReloading:1;
- sal_Bool bIsDowning:1;
- sal_Bool bModal:1;
- sal_Bool bEnabled:1;
- sal_Bool bWindowWasEnabled:1;
- sal_Bool bActive;
+ bool bResizeInToOut:1;
+ bool bDontOverwriteResizeInToOut:1;
+ bool bObjLocked:1;
+ bool bReloading:1;
+ bool bIsDowning:1;
+ bool bModal:1;
+ bool bEnabled:1;
+ bool bWindowWasEnabled:1;
+ bool bActive;
OUString aFactoryName;
::boost::optional< bool >
aHasToolPanels;
@@ -60,8 +60,8 @@ struct SfxViewFrame_Impl
, pWindow( 0 )
, pActiveChild(0)
, pFocusWin(0)
- , bWindowWasEnabled(sal_True)
- , bActive( sal_False )
+ , bWindowWasEnabled(true)
+ , bActive( false )
{
}