Kaydet (Commit) 4820e527 authored tarafından Ocke.Janssen's avatar Ocke.Janssen

dba34b: #i115655# check first 50 lines for type info

üst ba9519e6
...@@ -141,9 +141,10 @@ void OStaticSet::fillAllRows() ...@@ -141,9 +141,10 @@ void OStaticSet::fillAllRows()
RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "dbaccess", "Ocke.Janssen@sun.com", "OStaticSet::fillAllRows" ); RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "dbaccess", "Ocke.Janssen@sun.com", "OStaticSet::fillAllRows" );
if(!m_bEnd) if(!m_bEnd)
{ {
sal_Int32 nColumnCount = m_xSetMetaData->getColumnCount();
while(m_xDriverSet->next()) while(m_xDriverSet->next())
{ {
ORowSetRow pRow = new connectivity::ORowVector< connectivity::ORowSetValue >(m_xSetMetaData->getColumnCount()); ORowSetRow pRow = new connectivity::ORowVector< connectivity::ORowSetValue >(nColumnCount);
m_aSet.push_back(pRow); m_aSet.push_back(pRow);
m_aSetIter = m_aSet.end() - 1; m_aSetIter = m_aSet.end() - 1;
(pRow->get())[0] = getRow(); (pRow->get())[0] = getRow();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment