summaryrefslogtreecommitdiff
path: root/sfx2/source
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-01-22 11:28:39 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-01-22 11:39:20 +0100
commit768c74383cbd9f3a423a4ac0e0fb8565f4a5868c (patch)
treec0af5ac3cefcf74bb66ed633df61c0bd02bc8bac /sfx2/source
parent11bdc1bd913bd3a631ba10a97ba7890917eda898 (diff)
bool improvements
Change-Id: Iab6343064ad002bd11660aeb8c88c54562109cbc
Diffstat (limited to 'sfx2/source')
-rw-r--r--sfx2/source/view/viewfrm.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/source/view/viewfrm.cxx b/sfx2/source/view/viewfrm.cxx
index 9ed3d77ebec5..f084f8f125c0 100644
--- a/sfx2/source/view/viewfrm.cxx
+++ b/sfx2/source/view/viewfrm.cxx
@@ -3262,10 +3262,10 @@ void SfxViewFrame::ToggleChildWindow(sal_uInt16 nId)
//--------------------------------------------------------------------
-sal_Bool SfxViewFrame::HasChildWindow( sal_uInt16 nId )
+bool SfxViewFrame::HasChildWindow( sal_uInt16 nId )
{
SfxWorkWindow* pWork = GetWorkWindow_Impl( nId );
- return pWork ? pWork->HasChildWindow_Impl(nId) : sal_False;
+ return pWork && pWork->HasChildWindow_Impl(nId);
}
//--------------------------------------------------------------------