summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2015-08-31 20:55:18 +0200
committerEike Rathke <erack@redhat.com>2015-08-31 20:56:12 +0200
commit61d203fab63ef4f4863e8b2308e62bd245aa62db (patch)
tree265ab6dc301f451ef57dce8f467110a2c310eb57
parentf284678e334b02808a6c2d473ce683745c99d08e (diff)
TableRef: adapt to ::std::vector<std::unique_ptr<ScDBData>> change
Change-Id: I8f84bb5f4a988b5fb2b688e3c5be321c39818259
-rw-r--r--sc/source/filter/excel/xedbdata.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/excel/xedbdata.cxx b/sc/source/filter/excel/xedbdata.cxx
index 69c4dccd3d18..6522b522ba90 100644
--- a/sc/source/filter/excel/xedbdata.cxx
+++ b/sc/source/filter/excel/xedbdata.cxx
@@ -123,7 +123,7 @@ void XclExpTablesManager::Initialize()
sal_Int32 nTableId = 0;
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);
pDBData->GetArea( aRange);
SCTAB nTab = aRange.aStart.Tab();