diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-12-22 14:19:38 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-12-22 14:26:43 +0100 |
commit | bb97ecdbcc8d8dafd39e728b21bc68efee4eccbc (patch) | |
tree | cce3e69db84e635d13f985345425df9d8fa7b20e /sc | |
parent | 8e25844811ebcf313f4ae9d0caae1f97fd230a7d (diff) |
storing the chart doc while loading is a bad idea, fdo#57530
There seems to be no obvious reason why we would need to store the chart
doc during xls import. The chart test docs don't show any difference
without this call.
This speeds up xls chart import quite a bit. With the test doc from the
bug report I'm able to open the doc nearly instantly now.
Change-Id: I0b80462b9d1c405ab1d4cf456e12ebfe4428db98
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/excel/xiescher.cxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sc/source/filter/excel/xiescher.cxx b/sc/source/filter/excel/xiescher.cxx index d8c79f2b09bb..33036c043c8a 100644 --- a/sc/source/filter/excel/xiescher.cxx +++ b/sc/source/filter/excel/xiescher.cxx @@ -1674,7 +1674,6 @@ void XclImpChartObj::DoPostProcessSdrObj( XclImpDffConverter& rDffConv, SdrObjec Reference< XEmbedPersist > xPersist( xEmbObj, UNO_QUERY_THROW ); Reference< XModel > xModel( xEmbObj->getComponent(), UNO_QUERY_THROW ); mxChart->Convert( xModel, rDffConv, xPersist->getEntryName(), rSdrObj.GetLogicRect() ); - xPersist->storeOwn(); } catch( const Exception& ) { |