Tag: cws_src680_oj14 User: oj Date: 06/03/20 00:23:28 Modified: /dba/connectivity/source/drivers/odbc/ OTools.cxx
Log: move SQL_REAL to the correct position File Changes: Directory: /dba/connectivity/source/drivers/odbc/ ================================================= File [changed]: OTools.cxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/odbc/OTools.cxx?r1=1.26&r2=1.26.26.1 Delta lines: +4 -4 ------------------- --- OTools.cxx 8 Sep 2005 06:36:10 -0000 1.26 +++ OTools.cxx 20 Mar 2006 08:23:24 -0000 1.26.26.1 @@ -4,9 +4,9 @@ * * $RCSfile: OTools.cxx,v $ * - * $Revision: 1.26 $ + * $Revision: 1.26.26.1 $ * - * last change: $Author: rt $ $Date: 2005/09/08 06:36:10 $ + * last change: $Author: oj $ $Date: 2006/03/20 08:23:24 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -363,10 +363,10 @@ *pLen = sizeof(sal_Int32); break; case SQL_FLOAT: - case SQL_REAL: *((float*)_pData) = *(float*)_pValue; *pLen = sizeof(float); break; + case SQL_REAL: case SQL_DOUBLE: *((double*)_pData) = *(double*)_pValue; *pLen = sizeof(double); --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
