summaryrefslogtreecommitdiff
path: root/sw/source/core/text/portxt.cxx
diff options
context:
space:
mode:
authorMatteo Casalin <matteo.casalin@yahoo.com>2014-02-03 22:29:45 +0100
committerMatteo Casalin <matteo.casalin@yahoo.com>2014-02-03 22:56:55 +0100
commitc99c443bf92d3e44d17df12548b2b23346d094fd (patch)
treeb34d20297f4f02e78302cba6ccfff4ecc88264cc /sw/source/core/text/portxt.cxx
parent31ae7d511b6d6f643ee7f25388c0cc41c272d50f (diff)
sal_Bool to bool
Change-Id: I2bb29dd158e07d3fad924e9877b02435574f4d29
Diffstat (limited to 'sw/source/core/text/portxt.cxx')
-rw-r--r--sw/source/core/text/portxt.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/core/text/portxt.cxx b/sw/source/core/text/portxt.cxx
index a6871b41e4b6..4b72ac05ad75 100644
--- a/sw/source/core/text/portxt.cxx
+++ b/sw/source/core/text/portxt.cxx
@@ -587,9 +587,9 @@ void SwTxtPortion::Paint( const SwTxtPaintInfo &rInf ) const
const bool bSmartTags = 0 != pSmarttags;
if ( bWrong || bSmartTags || bGrammarCheck )
- rInf.DrawMarkedText( *this, rInf.GetLen(), sal_False, bWrong, bSmartTags, bGrammarCheck );
+ rInf.DrawMarkedText( *this, rInf.GetLen(), false, bWrong, bSmartTags, bGrammarCheck );
else
- rInf.DrawText( *this, rInf.GetLen(), sal_False );
+ rInf.DrawText( *this, rInf.GetLen(), false );
}
}