Tag: cws_src680_dba24d User: fs Date: 2007-12-12 10:10:57+0000 Modified: dba/connectivity/source/commontools/FValue.cxx
Log: #i10000# warning-freeness on unxmacxp File Changes: Directory: /dba/connectivity/source/commontools/ ================================================ File [changed]: FValue.cxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/source/commontools/FValue.cxx?r1=1.30.152.2&r2=1.30.152.3 Delta lines: +12 -12 --------------------- --- FValue.cxx 2007-12-01 13:36:15+0000 1.30.152.2 +++ FValue.cxx 2007-12-12 10:10:54+0000 1.30.152.3 @@ -4,9 +4,9 @@ * * $RCSfile: FValue.cxx,v $ * - * $Revision: 1.30.152.2 $ + * $Revision: 1.30.152.3 $ * - * last change: $Author: fs $ $Date: 2007/12/01 13:36:15 $ + * last change: $Author: fs $ $Date: 2007/12/12 10:10:54 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -1870,9 +1870,9 @@ break; case TypeClass_BOOLEAN: { - sal_Bool bDummy; - _rValue >>= bDummy; - (*this) = bDummy; + sal_Bool bValue( sal_False ); + _rValue >>= bValue; + (*this) = bValue; break; } case TypeClass_CHAR: @@ -1926,17 +1926,17 @@ } case TypeClass_UNSIGNED_SHORT: { - sal_uInt16 aDummy; - _rValue >>= aDummy; - (*this) = static_cast<sal_Int32>(aDummy); + sal_uInt16 nValue(0); + _rValue >>= nValue; + (*this) = static_cast<sal_Int32>(nValue); setSigned(sal_False); break; } case TypeClass_UNSIGNED_LONG: { - sal_uInt32 aDummy; - _rValue >>= aDummy; - (*this) = static_cast<sal_Int64>(aDummy); + sal_uInt32 nValue(0); + _rValue >>= nValue; + (*this) = static_cast<sal_Int64>(nValue); setSigned(sal_False); break; } --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
