diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-28 10:53:57 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-31 12:37:25 +0200 |
commit | c98a7eec7f24db4e3e7741a52463fca10156ecaf (patch) | |
tree | 4178645d542257d622b0ece8b15936cd88febbaf /reportdesign | |
parent | ddb07081da099a392b1cdcbb8716afb6af43e006 (diff) |
xmloff: sal_Bool->bool
Change-Id: I1c97da5b7bbac348150399afbf386613433e5551
Diffstat (limited to 'reportdesign')
-rw-r--r-- | reportdesign/source/filter/xml/xmlExport.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/reportdesign/source/filter/xml/xmlExport.cxx b/reportdesign/source/filter/xml/xmlExport.cxx index 83de23239560..91d4ca58fbba 100644 --- a/reportdesign/source/filter/xml/xmlExport.cxx +++ b/reportdesign/source/filter/xml/xmlExport.cxx @@ -846,7 +846,7 @@ void ORptExport::exportContainer(const Reference< XSection>& _xSection) if ( nCellType == util::NumberFormat::TEXT ) aHelper.SetNumberFormatAttributes(sEmpty, sEmpty); else - aHelper.SetNumberFormatAttributes(nFormatKey, 0.0, sal_False); + aHelper.SetNumberFormatAttributes(nFormatKey, 0.0, false); } } SvXMLElementExport aCell(*this,XML_NAMESPACE_TABLE, XML_TABLE_CELL, sal_True, sal_False); |