diff options
author | Michael Stahl <mst@openoffice.org> | 2011-09-15 14:01:38 +0200 |
---|---|---|
committer | Michael Stahl <mst@openoffice.org> | 2011-09-15 14:07:29 +0200 |
commit | 3c6d38fed033ba8b47af75a9b8712a4bd2c0ddec (patch) | |
tree | fcfc8223c3b2c8de401137376120feec51f51e11 /dbaccess | |
parent | c103db16cd86423cf59a843ecaa27e450d0ad8fa (diff) |
dbaccess: RowSet.cxx: update m_bIsInsertRow
fixes an STL assertion; this line was accidentally removed in merge commit
bc3bbd2bb4b629ec612beeeeadd959a2fb6426c2
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/core/api/RowSet.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/dbaccess/source/core/api/RowSet.cxx b/dbaccess/source/core/api/RowSet.cxx index 8e88f4ef8a8c..c74d75e03291 100644 --- a/dbaccess/source/core/api/RowSet.cxx +++ b/dbaccess/source/core/api/RowSet.cxx @@ -968,6 +968,7 @@ void SAL_CALL ORowSet::updateRow( ) throw(SQLException, RuntimeException) aEvt.Rows += aBookmarks.size(); m_aBookmark = m_pCache->getBookmark(); m_aCurrentRow = m_pCache->m_aMatrixIter; + m_bIsInsertRow = sal_False; if ( m_pCache->m_aMatrixIter != m_pCache->getEnd() && (*m_pCache->m_aMatrixIter).is() ) { if ( m_pCache->isResultSetChanged() ) |