User: ihi Date: 2006/08/24 03:37:31 Modified: dba/dbaccess/source/core/api/RowSetCache.cxx
Log: INTEGRATION: CWS sb56 (1.85.2); FILE MERGED 2006/07/25 08:41:01 sb 1.85.2.2: RESYNC: (1.85-1.86); FILE MERGED 2006/07/07 09:05:50 sb 1.85.2.1: #i67105# Made code compile (warning-free) with debug=x. File Changes: Directory: /dba/dbaccess/source/core/api/ ========================================= File [changed]: RowSetCache.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/core/api/RowSetCache.cxx?r1=1.88&r2=1.89 Delta lines: +4 -2 ------------------- --- RowSetCache.cxx 15 Aug 2006 10:42:22 -0000 1.88 +++ RowSetCache.cxx 24 Aug 2006 10:37:29 -0000 1.89 @@ -831,12 +831,14 @@ else { #if OSL_DEBUG_LEVEL > 0 - ORowSetMatrix::iterator aOldPos = aCacheIter->second.aIterator; + ORowSetMatrix::iterator aOldPos; + aOldPos = aCacheIter->second.aIterator; #endif CHECK_MATRIX_POS( ((aOldPos - m_pMatrix->begin()) + nOffSet) ); aCacheIter->second.aIterator += nOffSet; #if OSL_DEBUG_LEVEL > 0 - ORowSetMatrix::iterator aCurrentPos = aCacheIter->second.aIterator; + ORowSetMatrix::iterator aCurrentPos; + aCurrentPos = aCacheIter->second.aIterator; #endif OSL_ENSURE(aCacheIter->second.aIterator >= m_pMatrix->begin() && aCacheIter->second.aIterator < m_pMatrix->end(),"Iterator out of area!"); --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
