diff options
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/core/xmluconv.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xmloff/source/core/xmluconv.cxx b/xmloff/source/core/xmluconv.cxx index ce2076e30cd2..7bea9cabc429 100644 --- a/xmloff/source/core/xmluconv.cxx +++ b/xmloff/source/core/xmluconv.cxx @@ -305,21 +305,21 @@ bool SvXMLUnitConverter::setNullDate(const com::sun::star::uno::Reference <com:: return false; } -/** convert double to ISO Date tools::Time String */ +/** convert double to ISO Date Time String */ void SvXMLUnitConverter::convertDateTime(OUStringBuffer& rBuffer, const double& fDateTime, bool const bAddTimeIf0AM) { convertDateTime(rBuffer, fDateTime, m_pImpl->m_aNullDate, bAddTimeIf0AM); } -/** convert ISO Date tools::Time String to double */ +/** convert ISO Date Time String to double */ bool SvXMLUnitConverter::convertDateTime(double& fDateTime, const OUString& rString) { return convertDateTime(fDateTime, rString, m_pImpl->m_aNullDate); } -/** convert double to ISO Date tools::Time String */ +/** convert double to ISO Date Time String */ void SvXMLUnitConverter::convertDateTime( OUStringBuffer& rBuffer, const double& fDateTime, const com::sun::star::util::Date& aTempNullDate, @@ -427,7 +427,7 @@ void SvXMLUnitConverter::convertDateTime( OUStringBuffer& rBuffer, } } -/** convert ISO Date tools::Time String to double */ +/** convert ISO Date Time String to double */ bool SvXMLUnitConverter::convertDateTime( double& fDateTime, const OUString& rString, const com::sun::star::util::Date& aTempNullDate) { |