Kaydet (Commit) 61d203fa authored tarafından Eike Rathke's avatar Eike Rathke

TableRef: adapt to ::std::vector<std::unique_ptr<ScDBData>> change

Change-Id: I8f84bb5f4a988b5fb2b688e3c5be321c39818259
üst f284678e
...@@ -123,7 +123,7 @@ void XclExpTablesManager::Initialize() ...@@ -123,7 +123,7 @@ void XclExpTablesManager::Initialize()
sal_Int32 nTableId = 0; sal_Int32 nTableId = 0;
for (ScDBCollection::NamedDBs::const_iterator itDB(rDBs.begin()); itDB != rDBs.end(); ++itDB) for (ScDBCollection::NamedDBs::const_iterator itDB(rDBs.begin()); itDB != rDBs.end(); ++itDB)
{ {
const ScDBData* pDBData = &(*itDB); const ScDBData* pDBData = itDB->get();
ScRange aRange( ScAddress::UNINITIALIZED); ScRange aRange( ScAddress::UNINITIALIZED);
pDBData->GetArea( aRange); pDBData->GetArea( aRange);
SCTAB nTab = aRange.aStart.Tab(); SCTAB nTab = aRange.aStart.Tab();
......
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