summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2014-10-08 14:34:58 +0200
committerEike Rathke <erack@redhat.com>2014-10-08 14:35:36 +0200
commitf84dac9b1f394b05ceabb54fc77663cd747a3148 (patch)
tree61a2a7fd35f74b889541f85833ffa7c5c6086e25 /xmloff
parent04a810cee48d213806f13deb7953caa39ad08628 (diff)
back out even more wrong tools::Time changes, geez..
Change-Id: I52eb3400769999d7f554c3bdb8746f65b7990388
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/core/xmluconv.cxx8
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)
{