summaryrefslogtreecommitdiff
path: root/sfx2/source/appl
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-09-12 11:53:16 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-09-12 11:53:16 +0200
commit23248ed8a525dd7c3e5d565a17b809086c62029d (patch)
tree437f1c3b05bfe0546df7d25819da052dde9365f4 /sfx2/source/appl
parentb53b5081a85d7773cee8a718f84f31ecf7b70c0d (diff)
sfx2: sal_Bool -> bool
Change-Id: I2db25fa6f7b9fdc2096e622918b7e55228960a94
Diffstat (limited to 'sfx2/source/appl')
-rw-r--r--sfx2/source/appl/workwin.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sfx2/source/appl/workwin.cxx b/sfx2/source/appl/workwin.cxx
index b4b12132ce4c..b1f73b57d731 100644
--- a/sfx2/source/appl/workwin.cxx
+++ b/sfx2/source/appl/workwin.cxx
@@ -299,13 +299,13 @@ throw (css::uno::RuntimeException, std::exception)
{
m_pWrkWin->MakeVisible_Impl( true );
m_pWrkWin->ShowChildren_Impl();
- m_pWrkWin->ArrangeChildren_Impl( sal_True );
+ m_pWrkWin->ArrangeChildren_Impl( true );
}
else if ( eLayoutEvent == css::frame::LayoutManagerEvents::INVISIBLE )
{
m_pWrkWin->MakeVisible_Impl( false );
m_pWrkWin->HideChildren_Impl();
- m_pWrkWin->ArrangeChildren_Impl( sal_True );
+ m_pWrkWin->ArrangeChildren_Impl( true );
}
else if ( eLayoutEvent == css::frame::LayoutManagerEvents::LOCK )
{
@@ -754,12 +754,12 @@ void SfxWorkWindow::DeleteControllers_Impl()
// Virtual method for placing the child window.
-void SfxWorkWindow::ArrangeChildren_Impl( sal_Bool /*bForce*/)
+void SfxWorkWindow::ArrangeChildren_Impl( bool /*bForce*/)
{
Arrange_Impl();
}
-void SfxFrameWorkWin_Impl::ArrangeChildren_Impl( sal_Bool bForce )
+void SfxFrameWorkWin_Impl::ArrangeChildren_Impl( bool bForce )
{
if ( pFrame->IsClosing_Impl() || ( m_nLock && !bForce ))
return;
@@ -1235,7 +1235,7 @@ void SfxFrameWorkWin_Impl::UpdateObjectBars_Impl()
pWork = pWork->GetParent_Impl();
}
- ArrangeChildren_Impl( sal_False );
+ ArrangeChildren_Impl( false );
pWork = pParent;
while ( pWork )
@@ -2736,7 +2736,7 @@ void SfxWorkWindow::SetActiveChild_Impl( Window *pChild )
pActiveChild = pChild;
}
-bool SfxWorkWindow::ActivateNextChild_Impl( sal_Bool bForward )
+bool SfxWorkWindow::ActivateNextChild_Impl( bool bForward )
{
// Sort all children under list
std::vector<sal_uInt16> aList;