diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-03 08:56:11 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-03 08:59:38 +0200 |
commit | ded5965ce8098c1d46078be37264b15ca8b5a3f1 (patch) | |
tree | bcdbbf0a6f34dacdde20ff65d2cc17f27b52b55a /sw/source | |
parent | 82ce4dd60785cf08f7844d20fd8051d6b30c3bf1 (diff) |
editeng: sal_Bool->bool
Change-Id: I51b4ae54c2c440d38879439f74d4fea39d243004
Diffstat (limited to 'sw/source')
-rw-r--r-- | sw/source/core/fields/textapi.cxx | 2 | ||||
-rw-r--r-- | sw/source/ui/docvw/SidebarTxtControlAcc.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/core/fields/textapi.cxx b/sw/source/core/fields/textapi.cxx index daec7672ddbc..c5ded1779349 100644 --- a/sw/source/core/fields/textapi.cxx +++ b/sw/source/core/fields/textapi.cxx @@ -129,7 +129,7 @@ SvxTextForwarder* SwTextAPIEditSource::GetTextForwarder() } if( !pImpl->mpTextForwarder ) - pImpl->mpTextForwarder = new SvxOutlinerForwarder( *pImpl->mpOutliner, 0 ); + pImpl->mpTextForwarder = new SvxOutlinerForwarder( *pImpl->mpOutliner, false ); return pImpl->mpTextForwarder; } diff --git a/sw/source/ui/docvw/SidebarTxtControlAcc.cxx b/sw/source/ui/docvw/SidebarTxtControlAcc.cxx index a6d39d067b9f..b833bc708570 100644 --- a/sw/source/ui/docvw/SidebarTxtControlAcc.cxx +++ b/sw/source/ui/docvw/SidebarTxtControlAcc.cxx @@ -63,7 +63,7 @@ class SidebarTextEditSource : public SvxEditSource, SidebarTextEditSource::SidebarTextEditSource( SidebarTxtControl& rSidebarTxtControl ) : SvxEditSource() , mrSidebarTxtControl( rSidebarTxtControl ) - , mTextForwarder( *(rSidebarTxtControl.GetTextView()->GetOutliner()), sal_False ) + , mTextForwarder( *(rSidebarTxtControl.GetTextView()->GetOutliner()), false ) , mViewForwarder( *(rSidebarTxtControl.GetTextView()) ) { if ( mrSidebarTxtControl.GetTextView() ) |