summaryrefslogtreecommitdiff
path: root/linguistic
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-03-28 16:28:51 +0200
committerNoel Grandin <noel@peralex.com>2014-03-31 12:39:02 +0200
commit6ac6fb820f9e12649507cb5233c3b1727d67f2fd (patch)
treee9cf0ecee233a800c73a356677b0921c1c04d25c /linguistic
parentf907d740351886194bf2c9bcffceed22c4698ca5 (diff)
xmloff: sal_Bool->bool
Change-Id: I64c33ae4c157e270acac9a1f820d3e6272ba0bea
Diffstat (limited to 'linguistic')
-rw-r--r--linguistic/source/convdicxml.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/linguistic/source/convdicxml.cxx b/linguistic/source/convdicxml.cxx
index 34847b6145b3..2bd7769de16f 100644
--- a/linguistic/source/convdicxml.cxx
+++ b/linguistic/source/convdicxml.cxx
@@ -332,7 +332,7 @@ sal_uInt32 ConvDicXMLExport::exportDoc( enum ::xmloff::token::XMLTokenEnum /*eCl
//!! block necessary in order to have SvXMLElementExport d-tor called
//!! before the call to endDocument
{
- SvXMLElementExport aRoot( *this, XML_NAMESPACE_TCD, "text-conversion-dictionary", sal_True, sal_True );
+ SvXMLElementExport aRoot( *this, XML_NAMESPACE_TCD, "text-conversion-dictionary", true, true );
_ExportContent();
}
@@ -368,7 +368,7 @@ void ConvDicXMLExport::_ExportContent()
AddAttribute( XML_NAMESPACE_TCD, "property-type", OUString::number( nPropertyType ) );
}
SvXMLElementExport aEntryMain( *this, XML_NAMESPACE_TCD,
- "entry" , sal_True, sal_True );
+ "entry" , true, true );
pair< ConvMap::iterator, ConvMap::iterator > aRange =
rDic.aFromLeft.equal_range( *aKeyIt );
@@ -377,7 +377,7 @@ void ConvDicXMLExport::_ExportContent()
DBG_ASSERT( *aKeyIt == (*aIt).first, "key <-> entry mismatch" );
OUString aRightText( (*aIt).second );
SvXMLElementExport aEntryRightText( *this, XML_NAMESPACE_TCD,
- "right-text" , sal_True, sal_False );
+ "right-text" , true, false );
Characters( aRightText );
}
}