summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2003-12-17 14:53:34 +0000
committerVladimir Glazounov <vg@openoffice.org>2003-12-17 14:53:34 +0000
commitf1e6d0211f9eaa3ff7a14f4195074b4d456a16bb (patch)
treecb06fe2c44f348d277e1ff21c06c1a696cc4322c /xmloff
parenta740ea377f6254062b25ec8ac6e43d1b2984e4dc (diff)
INTEGRATION: CWS geordi2q11 (1.27.36); FILE MERGED
2003/12/17 11:42:06 hr 1.27.36.1: #111934#: join CWS ooo111fix1
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/core/xmluconv.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/xmloff/source/core/xmluconv.cxx b/xmloff/source/core/xmluconv.cxx
index e1b4c8f1d834..f78252da40f9 100644
--- a/xmloff/source/core/xmluconv.cxx
+++ b/xmloff/source/core/xmluconv.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: xmluconv.cxx,v $
*
- * $Revision: 1.27 $
+ * $Revision: 1.28 $
*
- * last change: $Author: vg $ $Date: 2003-10-07 12:06:43 $
+ * last change: $Author: vg $ $Date: 2003-12-17 15:53:34 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -1100,7 +1100,7 @@ void SvXMLUnitConverter::convertDateTime( ::rtl::OUStringBuffer& rBuffer,
fValue -= nValue;
double fCount;
if (nValue > 0)
- fCount = ::rtl::math::approxFloor (log10((double) nValue)) + 1;
+ fCount = ::rtl::math::approxFloor (log10((double)nValue)) + 1;
else if (nValue < 0)
fCount = ::rtl::math::approxFloor (log10((double)(nValue * -1))) + 1;
else