summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2005-09-23 10:41:33 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2005-09-23 10:41:33 +0000
commitca60450b8a94d97d14897ef9239957431935ebdc (patch)
treec140c9115a39f3754d34c0c42ce62cdb561a16b7 /connectivity
parent7fb028f4895f915ff40fbd9762be81c8d5addc33 (diff)
INTEGRATION: CWS dba201b (1.11.58); FILE MERGED
2005/09/21 08:28:31 oj 1.11.58.2: RESYNC: (1.11-1.12); FILE MERGED 2005/07/11 13:27:06 fs 1.11.58.1: merging CWS dba201 into dba201b
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/drivers/jdbc/Timestamp.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/connectivity/source/drivers/jdbc/Timestamp.cxx b/connectivity/source/drivers/jdbc/Timestamp.cxx
index ad61a76da8e3..fd6919b4bef7 100644
--- a/connectivity/source/drivers/jdbc/Timestamp.cxx
+++ b/connectivity/source/drivers/jdbc/Timestamp.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: Timestamp.cxx,v $
*
- * $Revision: 1.12 $
+ * $Revision: 1.13 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 06:13:51 $
+ * last change: $Author: hr $ $Date: 2005-09-23 11:41:33 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -212,7 +212,7 @@ java_sql_Timestamp::java_sql_Timestamp(const ::com::sun::star::util::DateTime& _
if ( _rOut.HundredthSeconds )
{
sDateStr += ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("."));
- sDateStr += ::rtl::OUString::valueOf(_rOut.HundredthSeconds);
+ sDateStr += ::rtl::OUString::valueOf(static_cast<sal_Int32>(_rOut.HundredthSeconds));
}
args[0].l = convertwchar_tToJavaString(t.pEnv,sDateStr);