summaryrefslogtreecommitdiff
path: root/svx
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 /svx
parentf907d740351886194bf2c9bcffceed22c4698ca5 (diff)
xmloff: sal_Bool->bool
Change-Id: I64c33ae4c157e270acac9a1f820d3e6272ba0bea
Diffstat (limited to 'svx')
-rw-r--r--svx/source/xml/xmlxtexp.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/xml/xmlxtexp.cxx b/svx/source/xml/xmlxtexp.cxx
index 062907373149..cd36fb985006 100644
--- a/svx/source/xml/xmlxtexp.cxx
+++ b/svx/source/xml/xmlxtexp.cxx
@@ -394,7 +394,7 @@ bool SvxXMLXTableExportComponent::exportTable() throw()
break;
}
- SvXMLElementExport aElem( *this, XML_NAMESPACE_OOO, pEleName, sal_True, sal_True );
+ SvXMLElementExport aElem( *this, XML_NAMESPACE_OOO, pEleName, true, true );
Sequence< OUString > aNames = mxTable->getElementNames();
const sal_Int32 nCount = aNames.getLength();
@@ -456,7 +456,7 @@ void SvxXMLColorEntryExporter::exportEntry( const OUString& rStrName, const Any&
::sax::Converter::convertColor( aOut, nColor );
mrExport.AddAttribute( XML_NAMESPACE_DRAW, XML_COLOR, aOut.makeStringAndClear() );
- SvXMLElementExport aElem( mrExport, XML_NAMESPACE_DRAW, XML_COLOR, sal_True, sal_True );
+ SvXMLElementExport aElem( mrExport, XML_NAMESPACE_DRAW, XML_COLOR, true, true );
}