Tag: cws_src680_warnings01 User: sb Date: 06/05/26 07:03:31 Modified: /dba/connectivity/source/drivers/calc/ CTable.cxx /dba/connectivity/source/drivers/flat/ ETable.cxx
Log: #i53898# Made code warning-free and/or compile at all after resync to SRC680m170. File Changes: Directory: /dba/connectivity/source/drivers/calc/ ================================================= File [changed]: CTable.cxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/calc/CTable.cxx?r1=1.24.30.2&r2=1.24.30.3 Delta lines: +5 -4 ------------------- --- CTable.cxx 23 May 2006 23:31:53 -0000 1.24.30.2 +++ CTable.cxx 26 May 2006 14:03:28 -0000 1.24.30.3 @@ -4,9 +4,9 @@ * * $RCSfile: CTable.cxx,v $ * - * $Revision: 1.24.30.2 $ + * $Revision: 1.24.30.3 $ * - * last change: $Author: sb $ $Date: 2006/05/23 23:31:53 $ + * last change: $Author: sb $ $Date: 2006/05/26 14:03:28 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -856,7 +856,8 @@ OSQLColumns::const_iterator aIter = _rCols.begin(); OSQLColumns::const_iterator aEnd = _rCols.end(); - for (sal_Int32 i = 1; aIter != aEnd && i < _rRow->size();++aIter, i++) + for (OValueRefVector::size_type i = 1; aIter != aEnd && i < _rRow->size(); + ++aIter, i++) { if ( (*_rRow)[i]->isBound() ) { Directory: /dba/connectivity/source/drivers/flat/ ================================================= File [changed]: ETable.cxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/flat/ETable.cxx?r1=1.49.16.6&r2=1.49.16.7 Delta lines: +5 -4 ------------------- --- ETable.cxx 23 May 2006 23:33:20 -0000 1.49.16.6 +++ ETable.cxx 26 May 2006 14:03:28 -0000 1.49.16.7 @@ -4,9 +4,9 @@ * * $RCSfile: ETable.cxx,v $ * - * $Revision: 1.49.16.6 $ + * $Revision: 1.49.16.7 $ * - * last change: $Author: sb $ $Date: 2006/05/23 23:33:20 $ + * last change: $Author: sb $ $Date: 2006/05/26 14:03:28 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -561,7 +561,8 @@ String aStr; OSQLColumns::const_iterator aIter = _rCols.begin(); OSQLColumns::const_iterator aEnd = _rCols.end(); - for (sal_Int32 i = 1; aIter != aEnd && i < _rRow->size();++aIter, i++) + for (OValueRefVector::size_type i = 1; aIter != aEnd && i < _rRow->size(); + ++aIter, i++) { m_aCurrentLine.GetTokenSpecial(aStr,nStartPos,pConnection->getFieldDelimiter(),pConnection->getStringDelimiter()); --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
