diff options
author | Noel Grandin <noel@peralex.com> | 2014-04-07 09:15:28 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-04-07 13:53:50 +0200 |
commit | 74fdda0cd41d97b6c97d2115584ee48fd552514e (patch) | |
tree | fa29308f180abbd7dec4c16f5603604a15fa079e /sfx2/source/appl/childwin.cxx | |
parent | 1eee88dd6bf2c647aa3458d33a5f45c51c024186 (diff) |
sfx2: sal_Bool->bool
Change-Id: I48ae51781f64e60deb0c03352087100729c8c3cd
Diffstat (limited to 'sfx2/source/appl/childwin.cxx')
-rw-r--r-- | sfx2/source/appl/childwin.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sfx2/source/appl/childwin.cxx b/sfx2/source/appl/childwin.cxx index b6f5c012a880..85d4d68f39d4 100644 --- a/sfx2/source/appl/childwin.cxx +++ b/sfx2/source/appl/childwin.cxx @@ -47,7 +47,7 @@ struct SfxChildWindow_Impl ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > xListener; SfxChildWinFactory* pFact; bool bHideNotDelete; - sal_Bool bVisible; + bool bVisible; bool bHideAtToggle; bool bWantsFocus; SfxModule* pContextModule; @@ -154,7 +154,7 @@ SfxChildWindow::SfxChildWindow(Window *pParentWindow, sal_uInt16 nId) pImp->bHideNotDelete = false; pImp->bHideAtToggle = false; pImp->bWantsFocus = true; - pImp->bVisible = sal_True; + pImp->bVisible = true; pImp->pContextModule = NULL; pImp->pWorkWin = NULL; @@ -632,12 +632,12 @@ bool SfxChildWinInfo::GetExtraData_Impl return false; } -sal_Bool SfxChildWindow::IsVisible() const +bool SfxChildWindow::IsVisible() const { return pImp->bVisible; } -void SfxChildWindow::SetVisible_Impl( sal_Bool bVis ) +void SfxChildWindow::SetVisible_Impl( bool bVis ) { pImp->bVisible = bVis; } |