Tag: cws_src680_dba203c User: oj Date: 06/04/24 06:44:45 Modified: /dba/dbaccess/source/ui/misc/ HtmlReader.cxx
Log: RESYNC: (1.22-1.23); FILE MERGED File Changes: Directory: /dba/dbaccess/source/ui/misc/ ======================================== File [changed]: HtmlReader.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/ui/misc/HtmlReader.cxx?r1=1.22.50.1&r2=1.22.50.2 Delta lines: +8 -8 ------------------- --- HtmlReader.cxx 13 Apr 2006 13:55:20 -0000 1.22.50.1 +++ HtmlReader.cxx 24 Apr 2006 13:44:42 -0000 1.22.50.2 @@ -307,11 +307,11 @@ } break; case HTML_TABLEROW_ON: - if ( m_xResultSetUpdate.is() ) + if ( m_pUpdateHelper.get() ) { try { - m_xResultSetUpdate->moveToInsertRow(); // sonst neue Zeile anh"angen + m_pUpdateHelper->moveToInsertRow(); // sonst neue Zeile anh"angen } catch(SQLException& e) // UpdateFehlerbehandlung @@ -347,7 +347,7 @@ } break; case HTML_TABLEROW_OFF: - if ( !m_xResultSetUpdate.is() ) + if ( !m_pUpdateHelper.get() ) { m_bError = sal_True; break; @@ -356,8 +356,8 @@ { m_nRowCount++; if (m_bIsAutoIncrement) // if bSetAutoIncrement then I have to set the autoincrement - m_xRowUpdate->updateInt(1,m_nRowCount); - m_xResultSetUpdate->insertRow(); + m_pUpdateHelper->updateInt(1,m_nRowCount); + m_pUpdateHelper->insertRow(); } catch(SQLException& e) ////////////////////////////////////////////////////////////////////// --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
