summaryrefslogtreecommitdiff
path: root/oox/source
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2008-04-18 13:29:26 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2008-04-18 13:29:26 +0000
commitadc47ae543c43e8c7071943041c91c34eb89c4ae (patch)
treeddbfc7ad2aeac91b43f041d48cfb4d1b36f7e7d9 /oox/source
parentbd0835d04029481067dbc639523d5cb4b8189817 (diff)
INTEGRATION: CWS xmlfilter04 (1.2.12); FILE MERGED
2008/03/12 14:22:31 dr 1.2.12.3: more code finetuning 2008/02/27 11:16:18 dr 1.2.12.2: first steps: chart API conversion 2008/02/21 12:42:05 hbrinkm 1.2.12.1: joined changes from xmlfilter03
Diffstat (limited to 'oox/source')
-rw-r--r--oox/source/ppt/pptimport.cxx9
1 files changed, 8 insertions, 1 deletions
diff --git a/oox/source/ppt/pptimport.cxx b/oox/source/ppt/pptimport.cxx
index aa7573a0a78d..7ff8b75bffee 100644
--- a/oox/source/ppt/pptimport.cxx
+++ b/oox/source/ppt/pptimport.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: pptimport.cxx,v $
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
* This file is part of OpenOffice.org.
*
@@ -29,6 +29,7 @@
************************************************************************/
#include "oox/ppt/pptimport.hxx"
+#include "oox/drawingml/chart/chartconverter.hxx"
#include "oox/dump/pptxdumper.hxx"
using ::rtl::OUString;
@@ -58,6 +59,7 @@ uno::Reference< uno::XInterface > SAL_CALL PowerPointImport_createInstance(const
PowerPointImport::PowerPointImport( const uno::Reference< lang::XMultiServiceFactory > & rSMgr )
: XmlFilterBase( rSMgr )
+ , mxChartConv( new ::oox::drawingml::chart::ChartConverter )
{
}
@@ -128,6 +130,11 @@ const oox::vml::DrawingPtr PowerPointImport::getDrawings()
return xRet;
}
+::oox::drawingml::chart::ChartConverter& PowerPointImport::getChartConverter()
+{
+ return *mxChartConv;
+}
+
OUString PowerPointImport::implGetImplementationName() const
{
return PowerPointImport_getImplementationName();