Tag: cws_src680_dba201 User: oj Date: 05/04/25 05:54:57 Modified: /dba/connectivity/source/drivers/jdbc/ Timestamp.cxx
Log: #i45302# cast to int32 inserted File Changes: Directory: /dba/connectivity/source/drivers/jdbc/ ================================================= File [changed]: Timestamp.cxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/jdbc/Timestamp.cxx?r1=1.11&r2=1.11.34.1 Delta lines: +4 -4 ------------------- --- Timestamp.cxx 16 Feb 2005 17:30:27 -0000 1.11 +++ Timestamp.cxx 25 Apr 2005 12:54:55 -0000 1.11.34.1 @@ -2,9 +2,9 @@ * * $RCSfile: Timestamp.cxx,v $ * - * $Revision: 1.11 $ + * $Revision: 1.11.34.1 $ * - * last change: $Author: vg $ $Date: 2005/02/16 17:30:27 $ + * last change: $Author: oj $ $Date: 2005/04/25 12:54:55 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -238,7 +238,7 @@ 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); --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
