[Libreoffice-commits] core.git: sc/source

Eike Rathke erack at redhat.com
Mon Aug 31 11:57:42 PDT 2015


 sc/source/filter/excel/xedbdata.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 61d203fab63ef4f4863e8b2308e62bd245aa62db
Author: Eike Rathke <erack at redhat.com>
Date:   Mon Aug 31 20:55:18 2015 +0200

    TableRef: adapt to ::std::vector<std::unique_ptr<ScDBData>> change
    
    Change-Id: I8f84bb5f4a988b5fb2b688e3c5be321c39818259

diff --git a/sc/source/filter/excel/xedbdata.cxx b/sc/source/filter/excel/xedbdata.cxx
index 69c4dcc..6522b52 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();


More information about the Libreoffice-commits mailing list