summaryrefslogtreecommitdiff
path: root/sfx2/source/view/impframe.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/impframe.hxx
parent1eee88dd6bf2c647aa3458d33a5f45c51c024186 (diff)
sfx2: sal_Bool->bool
Change-Id: I48ae51781f64e60deb0c03352087100729c8c3cd
Diffstat (limited to 'sfx2/source/view/impframe.hxx')
-rw-r--r--sfx2/source/view/impframe.hxx24
1 files changed, 12 insertions, 12 deletions
diff --git a/sfx2/source/view/impframe.hxx b/sfx2/source/view/impframe.hxx
index b052bc2a16cc..7b23889efb79 100644
--- a/sfx2/source/view/impframe.hxx
+++ b/sfx2/source/view/impframe.hxx
@@ -41,12 +41,12 @@ public:
SfxViewFrame* pCurrentViewFrame;
SfxFrameDescriptor* pDescr;
sal_uInt16 nLocks;
- sal_Bool bClosing : 1;
- sal_Bool bPrepClosing : 1;
- sal_Bool bInCancelTransfers : 1;
- sal_Bool bOwnsBindings : 1;
- sal_Bool bReleasingComponent : 1;
- sal_Bool bInPlace : 1;
+ bool bClosing : 1;
+ bool bPrepClosing : 1;
+ bool bInCancelTransfers : 1;
+ bool bOwnsBindings : 1;
+ bool bReleasingComponent : 1;
+ bool bInPlace : 1;
SfxFrame* pFrame;
SfxWorkWindow* pWorkWin;
SvBorder aBorder;
@@ -62,12 +62,12 @@ public:
,pCurrentViewFrame( NULL )
,pDescr( NULL )
,nLocks( 0 )
- ,bClosing(sal_False)
- ,bPrepClosing(sal_False)
- ,bInCancelTransfers( sal_False )
- ,bOwnsBindings( sal_False )
- ,bReleasingComponent( sal_False )
- ,bInPlace( sal_False )
+ ,bClosing(false)
+ ,bPrepClosing(false)
+ ,bInCancelTransfers( false )
+ ,bOwnsBindings( false )
+ ,bReleasingComponent( false )
+ ,bInPlace( false )
,pFrame( pAntiImplP )
,pWorkWin( 0 )
,pExternalContainerWindow( NULL )