summaryrefslogtreecommitdiff
path: root/xmloff/source/style/xmlaustp.cxx
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 /xmloff/source/style/xmlaustp.cxx
parentf907d740351886194bf2c9bcffceed22c4698ca5 (diff)
xmloff: sal_Bool->bool
Change-Id: I64c33ae4c157e270acac9a1f820d3e6272ba0bea
Diffstat (limited to 'xmloff/source/style/xmlaustp.cxx')
-rw-r--r--xmloff/source/style/xmlaustp.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/xmloff/source/style/xmlaustp.cxx b/xmloff/source/style/xmlaustp.cxx
index 944caa0634bc..667643a5312d 100644
--- a/xmloff/source/style/xmlaustp.cxx
+++ b/xmloff/source/style/xmlaustp.cxx
@@ -240,7 +240,7 @@ void SvXMLAutoStylePoolP::exportStyleContent(
{
SvXMLElementExport aElem(
GetExport(), XML_NAMESPACE_STYLE, XML_HEADER_STYLE,
- sal_True, sal_True );
+ true, true );
rPropExp.exportXML(
GetExport(), rProperties,
@@ -251,7 +251,7 @@ void SvXMLAutoStylePoolP::exportStyleContent(
{
SvXMLElementExport aElem(
GetExport(), XML_NAMESPACE_STYLE, XML_FOOTER_STYLE,
- sal_True, sal_True );
+ true, true );
rPropExp.exportXML(
GetExport(), rProperties,
@@ -281,7 +281,7 @@ void SvXMLAutoStylePoolP::AddFamily(
const OUString& rStrName,
SvXMLExportPropertyMapper* pMapper,
const OUString& aStrPrefix,
- sal_Bool bAsFamily )
+ bool bAsFamily )
{
UniReference <SvXMLExportPropertyMapper> xTmp = pMapper;
AddFamily( nFamily, rStrName, xTmp, aStrPrefix, bAsFamily );
@@ -292,7 +292,7 @@ void SvXMLAutoStylePoolP::AddFamily(
const OUString& rStrName,
const UniReference < SvXMLExportPropertyMapper > & rMapper,
const OUString& rStrPrefix,
- sal_Bool bAsFamily )
+ bool bAsFamily )
{
pImpl->AddFamily( nFamily, rStrName, rMapper, rStrPrefix, bAsFamily );
}
@@ -350,12 +350,12 @@ OUString SvXMLAutoStylePoolP::Add( sal_Int32 nFamily,
return sName;
}
-sal_Bool SvXMLAutoStylePoolP::Add(OUString& rName, sal_Int32 nFamily, const OUString& rParent, const ::std::vector< XMLPropertyState >& rProperties )
+bool SvXMLAutoStylePoolP::Add(OUString& rName, sal_Int32 nFamily, const OUString& rParent, const ::std::vector< XMLPropertyState >& rProperties )
{
return pImpl->Add(rName, nFamily, rParent, rProperties);
}
-sal_Bool SvXMLAutoStylePoolP::AddNamed( const OUString& rName, sal_Int32 nFamily, const OUString& rParent,
+bool SvXMLAutoStylePoolP::AddNamed( const OUString& rName, sal_Int32 nFamily, const OUString& rParent,
const ::std::vector< XMLPropertyState >& rProperties )
{