diff options
| author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 19:58:40 +0100 |
|---|---|---|
| committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 20:26:18 +0100 |
| commit | fa189d7447a602d1ba3310603a63df582d01bd72 (patch) | |
| tree | 9863e9380396626c7b12144fccbff67da7a27ffd /xmloff/source/style/numehelp.cxx | |
| parent | 9d1c20259f08cd798a2f197a7ecef1bf6382be3f (diff) | |
bool improvements
Change-Id: I238ab0ebe54cc804c85356a3de9fbdcc396057d3
Diffstat (limited to 'xmloff/source/style/numehelp.cxx')
| -rw-r--r-- | xmloff/source/style/numehelp.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/xmloff/source/style/numehelp.cxx b/xmloff/source/style/numehelp.cxx index 3224e0515eae..b7bd42c83ad2 100644 --- a/xmloff/source/style/numehelp.cxx +++ b/xmloff/source/style/numehelp.cxx @@ -141,7 +141,7 @@ void XMLNumberFormatAttributesExportHelper::WriteAttributes(SvXMLExport& rXMLExp { OUString sValue( ::rtl::math::doubleToUString( rValue, rtl_math_StringFormat_Automatic, - rtl_math_DecimalPlaces_Max, '.', sal_True)); + rtl_math_DecimalPlaces_Max, '.', true)); rXMLExport.AddAttribute(XML_NAMESPACE_OFFICE, XML_VALUE, sValue); } } @@ -206,7 +206,7 @@ void XMLNumberFormatAttributesExportHelper::WriteAttributes(SvXMLExport& rXMLExp fTempValue, rtl_math_StringFormat_Automatic, rtl_math_DecimalPlaces_Max, '.', - sal_True)); + true)); rXMLExport.AddAttribute(XML_NAMESPACE_OFFICE, XML_BOOLEAN_VALUE, sValue); } } @@ -223,7 +223,7 @@ void XMLNumberFormatAttributesExportHelper::WriteAttributes(SvXMLExport& rXMLExp { OUString sValue( ::rtl::math::doubleToUString( rValue, rtl_math_StringFormat_Automatic, - rtl_math_DecimalPlaces_Max, '.', sal_True)); + rtl_math_DecimalPlaces_Max, '.', true)); rXMLExport.AddAttribute(XML_NAMESPACE_OFFICE, XML_VALUE, sValue); } } @@ -425,7 +425,7 @@ void XMLNumberFormatAttributesExportHelper::WriteAttributes( { OUString sValue( ::rtl::math::doubleToUString( rValue, rtl_math_StringFormat_Automatic, - rtl_math_DecimalPlaces_Max, '.', sal_True)); + rtl_math_DecimalPlaces_Max, '.', true)); pExport->AddAttribute(sAttrValue, sValue); } } @@ -490,7 +490,7 @@ void XMLNumberFormatAttributesExportHelper::WriteAttributes( fTempValue, rtl_math_StringFormat_Automatic, rtl_math_DecimalPlaces_Max, '.', - sal_True)); + true)); pExport->AddAttribute(sAttrBooleanValue, sValue); } } @@ -507,7 +507,7 @@ void XMLNumberFormatAttributesExportHelper::WriteAttributes( { OUString sValue( ::rtl::math::doubleToUString( rValue, rtl_math_StringFormat_Automatic, - rtl_math_DecimalPlaces_Max, '.', sal_True)); + rtl_math_DecimalPlaces_Max, '.', true)); pExport->AddAttribute(sAttrValue, sValue); } } |
