From a81327ff2faaf21c22f1a902bea170942d5207e6 Mon Sep 17 00:00:00 2001 From: Thorsten Behrens Date: Fri, 12 Aug 2011 15:53:12 +0200 Subject: Import SmartArt graphics to Impress Extending the existing functionality to * properly parse and model the declarative shapes * provide means for round-tripping, and re-rendering the shapes from xml snippets * implements the layouts composite, cycle, linear, and the special 'text' node This is based on the initial smartart work from hfiguiere@novell.com --- sc/source/filter/excel/xestream.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sc/source/filter/excel/xestream.cxx') diff --git a/sc/source/filter/excel/xestream.cxx b/sc/source/filter/excel/xestream.cxx index 0d66d463d60e..b83affe01ad6 100644 --- a/sc/source/filter/excel/xestream.cxx +++ b/sc/source/filter/excel/xestream.cxx @@ -1091,10 +1091,10 @@ const oox::drawingml::table::TableStyleListPtr XclExpXmlStream::getTableStyles() return oox::drawingml::table::TableStyleListPtr(); } -oox::drawingml::chart::ChartConverter& XclExpXmlStream::getChartConverter() +oox::drawingml::chart::ChartConverter* XclExpXmlStream::getChartConverter() { // DO NOT CALL - return * (oox::drawingml::chart::ChartConverter*) NULL; + return NULL; } ScDocShell* XclExpXmlStream::getDocShell() -- cgit