diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2018-11-08 21:12:34 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2018-11-09 08:42:02 +0100 |
commit | d8cca1c3720e3c3d352e68ecd0dbe8bfbbaf1e4e (patch) | |
tree | 056d5b51eee03845e0b80db9aa61a5ca2651a800 /starmath/source/mathmlimport.cxx | |
parent | 9d93e030288aaa721761cb7991d1afdde6335777 (diff) |
starmath: create XMLImporter instances with an uno constructor
Change-Id: I96623f6d87ec2f380b37a2de51a089e0a4d59136
Reviewed-on: https://gerrit.libreoffice.org/63134
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'starmath/source/mathmlimport.cxx')
-rw-r--r-- | starmath/source/mathmlimport.cxx | 20 |
1 files changed, 5 insertions, 15 deletions
diff --git a/starmath/source/mathmlimport.cxx b/starmath/source/mathmlimport.cxx index 4cf6eb321f00..d9f764344dc1 100644 --- a/starmath/source/mathmlimport.cxx +++ b/starmath/source/mathmlimport.cxx @@ -434,24 +434,14 @@ const uno::Sequence< sal_Int8 > & SmXMLImport::getUnoTunnelId() throw() return theSmXMLImportUnoTunnelId::get().getSeq(); } -OUString SmXMLImport_getImplementationName() throw() +extern "C" SAL_DLLPUBLIC_EXPORT uno::XInterface* +Math_XMLImporter_get_implementation(uno::XComponentContext* pCtx, + uno::Sequence<uno::Any> const& /*rSeq*/) { - return OUString( "com.sun.star.comp.Math.XMLImporter" ); + return cppu::acquire( + new SmXMLImport(pCtx, "com.sun.star.comp.Math.XMLImporter", SvXMLImportFlags::ALL)); } -uno::Sequence< OUString > SmXMLImport_getSupportedServiceNames() - throw() -{ - return uno::Sequence<OUString>{ IMPORT_SVC_NAME }; -} - -uno::Reference< uno::XInterface > SmXMLImport_createInstance( - const uno::Reference< lang::XMultiServiceFactory > & rSMgr) -{ - return static_cast<cppu::OWeakObject*>(new SmXMLImport(comphelper::getComponentContext(rSMgr), SmXMLImport_getImplementationName(), SvXMLImportFlags::ALL)); -} - - OUString SmXMLImportMeta_getImplementationName() throw() { return OUString( "com.sun.star.comp.Math.XMLOasisMetaImporter" ); |