User: hr      
Date: 06/06/19 18:18:35

Modified:
 /dba/connectivity/source/drivers/calc/
  CTable.cxx

Log:
 INTEGRATION: CWS warnings01 (1.24.30); FILE MERGED
 2006/05/26 14:03:28 sb 1.24.30.3: #i53898# Made code warning-free and/or 
compile at all after resync to SRC680m170.
 2006/05/23 23:31:53 sb 1.24.30.2: RESYNC: (1.24-1.26); FILE MERGED
 2005/11/07 14:43:11 fs 1.24.30.1: #i57457# warning-free code

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.26&r2=1.27
Delta lines:  +4 -5
-------------------
--- CTable.cxx  19 Apr 2006 13:16:25 -0000      1.26
+++ CTable.cxx  20 Jun 2006 01:18:33 -0000      1.27
@@ -759,10 +759,8 @@
 sal_Int64 OCalcTable::getSomething( const Sequence< sal_Int8 > & rId ) throw 
(RuntimeException)
 {
        return (rId.getLength() == 16 && 0 == 
rtl_compareMemory(getUnoTunnelImplementationId().getConstArray(),  
rId.getConstArray(), 16 ) ) 
-                               ?
-                       (sal_Int64)this
-                               : 
-                       OCalcTable_BASE::getSomething(rId);
+                               ? reinterpret_cast< sal_Int64 >( this )
+                               : OCalcTable_BASE::getSomething(rId);
 }
 //------------------------------------------------------------------
 sal_Int32 OCalcTable::getCurrentLastPos() const
@@ -858,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() )
         {




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to