From 0294fa0ea81ab4b9625e5e8f0513ce94ea3217d7 Mon Sep 17 00:00:00 2001 From: Markus Mohrhard Date: Sun, 28 Aug 2011 04:08:33 +0200 Subject: some more sal_Bool -> bool in sc/source/filter/xml --- xmloff/source/text/txtparae.cxx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'xmloff/source/text/txtparae.cxx') diff --git a/xmloff/source/text/txtparae.cxx b/xmloff/source/text/txtparae.cxx index aac49a603091..4e00ce513185 100644 --- a/xmloff/source/text/txtparae.cxx +++ b/xmloff/source/text/txtparae.cxx @@ -2197,7 +2197,7 @@ void XMLTextParagraphExport::exportTextRangeEnumeration( sal_Bool bPrvChrIsSpc ) { static OUString sMeta(RTL_CONSTASCII_USTRINGPARAM("InContentMetadata")); - sal_Bool bPrevCharIsSpace = bPrvChrIsSpc; + bool bPrevCharIsSpace = bPrvChrIsSpc; while( rTextEnum->hasMoreElements() ) { @@ -2218,7 +2218,7 @@ void XMLTextParagraphExport::exportTextRangeEnumeration( else if( sType.equals(sTextField)) { exportTextField( xTxtRange, bAutoStyles, bIsProgress ); - bPrevCharIsSpace = sal_False; + bPrevCharIsSpace = false; } else if( sType.equals( sFrame ) ) { @@ -2236,14 +2236,14 @@ void XMLTextParagraphExport::exportTextRangeEnumeration( xSection, bIsProgress, sal_True, &xPropSet ); - bPrevCharIsSpace = sal_False; + bPrevCharIsSpace = false; } else if (sType.equals(sFootnote)) { exportTextFootnote(xPropSet, xTxtRange->getString(), bAutoStyles, bIsProgress ); - bPrevCharIsSpace = sal_False; + bPrevCharIsSpace = false; } else if (sType.equals(sBookmark)) { @@ -2342,7 +2342,7 @@ void XMLTextParagraphExport::exportTextRangeEnumeration( if( xServiceInfo->supportsService( sTextFieldService ) ) { exportTextField( xTxtRange, bAutoStyles, bIsProgress ); - bPrevCharIsSpace = sal_False; + bPrevCharIsSpace = false; } else { @@ -3207,7 +3207,7 @@ sal_Bool XMLTextParagraphExport::addHyperlinkAttributes( void XMLTextParagraphExport::exportTextRange( const Reference < XTextRange > & rTextRange, sal_Bool bAutoStyles, - sal_Bool& rPrevCharIsSpace ) + bool& rPrevCharIsSpace ) { Reference < XPropertySet > xPropSet( rTextRange, UNO_QUERY ); if( bAutoStyles ) @@ -3267,7 +3267,7 @@ void XMLTextParagraphExport::exportTextRange( } void XMLTextParagraphExport::exportText( const OUString& rText, - sal_Bool& rPrevCharIsSpace ) + bool& rPrevCharIsSpace ) { sal_Int32 nExpStartPos = 0; sal_Int32 nEndPos = rText.getLength(); -- cgit