Tag: cws_src680_dba30 User: fs Date: 05/11/23 02:14:19 Modified: /dba/dbaccess/source/core/api/ RowSetBase.cxx
Log: RESYNC: (1.78-1.79); FILE MERGED File Changes: Directory: /dba/dbaccess/source/core/api/ ========================================= File [changed]: RowSetBase.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/core/api/RowSetBase.cxx?r1=1.75.6.3&r2=1.75.6.4 Delta lines: +5 -1 ------------------- --- RowSetBase.cxx 13 Oct 2005 14:49:10 -0000 1.75.6.3 +++ RowSetBase.cxx 23 Nov 2005 10:14:16 -0000 1.75.6.4 @@ -250,7 +250,11 @@ { ::osl::MutexGuard aGuard( *m_pMutex ); checkCache(); - OSL_ENSURE(!(m_bBeforeFirst || m_bAfterLast),"ORowSetBase::getValue: Illegal call here (we're before first or after last)!"); + if ( m_bBeforeFirst || m_bAfterLast ) + { + OSL_ENSURE(0,"ORowSetBase::getValue: Illegal call here (we're before first or after last)!"); + throwFunctionSequenceException(*m_pMySelf); + } if ( !m_aCurrentRow.isNull() && m_aCurrentRow != m_pCache->getEnd() && m_aCurrentRow->isValid() ) { --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
