summaryrefslogtreecommitdiff
path: root/sw/source/core/txtnode
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2012-10-20 23:12:12 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2012-10-20 23:12:12 +0900
commitbb80f99092c4ad6d5015165a60f7a239dcb2fbff (patch)
treeb1731a6cb5975c8c2f84363e942eb9c794fd3264 /sw/source/core/txtnode
parent1cdad42cf9cfd868f717ab6b972be201f1f06b70 (diff)
sal_Bool to bool
Change-Id: Ideb46a876ef74f505b71e2a788d5f8da50e251af
Diffstat (limited to 'sw/source/core/txtnode')
-rw-r--r--sw/source/core/txtnode/ndtxt.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/core/txtnode/ndtxt.cxx b/sw/source/core/txtnode/ndtxt.cxx
index dadfe42808a0..7975b17bdbc8 100644
--- a/sw/source/core/txtnode/ndtxt.cxx
+++ b/sw/source/core/txtnode/ndtxt.cxx
@@ -1727,10 +1727,10 @@ void SwTxtNode::InsertText( const XubString & rStr, const SwIndex & rIdx,
if ( !nLen ) return;
- sal_Bool bOldExpFlg = IsIgnoreDontExpand();
+ bool bOldExpFlg = IsIgnoreDontExpand();
if (nMode & IDocumentContentOperations::INS_FORCEHINTEXPAND)
{
- SetIgnoreDontExpand( sal_True );
+ SetIgnoreDontExpand( true );
}
Update( rIdx, nLen ); // text content changed!
@@ -3330,8 +3330,8 @@ void SwTxtNode::ReplaceText( const SwIndex& rStart, const xub_StrLen nDelLen,
}
}
- sal_Bool bOldExpFlg = IsIgnoreDontExpand();
- SetIgnoreDontExpand( sal_True );
+ bool bOldExpFlg = IsIgnoreDontExpand();
+ SetIgnoreDontExpand( true );
if( nLen && rText.Len() )
{