summaryrefslogtreecommitdiff
path: root/sd/source
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-05-21 13:52:07 +0200
committerNoel Grandin <noel@peralex.com>2013-05-21 13:53:21 +0200
commit02021163dbbcc8904da0b2138c8b53684dcc8ab4 (patch)
tree3c3baf5d8152699b82f7a9aa66a093b6cff62b3b /sd/source
parent6bf00f0f94394c62bddcd77b776e4e3592160201 (diff)
fdo#46808, Convert oox::PowerPointExport service to new style
The service already existed, it just needed an IDL file Change-Id: I1404f4f60abafd489ddfb7294affcc7ff33885ce
Diffstat (limited to 'sd/source')
-rw-r--r--sd/source/filter/eppt/pptx-epptooxml.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/sd/source/filter/eppt/pptx-epptooxml.cxx b/sd/source/filter/eppt/pptx-epptooxml.cxx
index ba04809775e1..084fa7873216 100644
--- a/sd/source/filter/eppt/pptx-epptooxml.cxx
+++ b/sd/source/filter/eppt/pptx-epptooxml.cxx
@@ -2141,8 +2141,9 @@ OUString SAL_CALL PowerPointExport_getImplementationName() throw()
uno::Sequence< OUString > SAL_CALL PowerPointExport_getSupportedServiceNames() throw()
{
- const OUString aServiceName( "com.sun.star.comp.ooxpptx" );
- const Sequence< OUString > aSeq( &aServiceName, 1 );
+ Sequence< OUString > aSeq( 2 );
+ aSeq[0] = "com.sun.star.comp.ooxpptx";
+ aSeq[1] = "com.sun.star.oox.PowerPointExport";
return aSeq;
}