summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorMatúš Kukan <matus.kukan@gmail.com>2011-10-02 00:16:18 +0200
committerMatúš Kukan <matus.kukan@gmail.com>2011-10-02 00:16:18 +0200
commit09046cb6c040e836c0041c18b617559cd0e21df7 (patch)
tree34cc6b8befc360e8991b7da14e48553357916962 /filter
parent87e950a2472e52eabf5b5b1ff0275ca3aa8a7134 (diff)
do not use COMPHELPER_SERVICEDECL_EXPORTS macro
Diffstat (limited to 'filter')
-rw-r--r--filter/source/svg/svgfilter.cxx9
1 files changed, 8 insertions, 1 deletions
diff --git a/filter/source/svg/svgfilter.cxx b/filter/source/svg/svgfilter.cxx
index 236e933f1d3a..42f48a2fb081 100644
--- a/filter/source/svg/svgfilter.cxx
+++ b/filter/source/svg/svgfilter.cxx
@@ -334,6 +334,13 @@ namespace sdecl = comphelper::service_decl;
"com.sun.star.document.ExtendedTypeDetection" );
// The C shared lib entry points
-COMPHELPER_SERVICEDECL_EXPORTS1(svgFilter)
+extern "C" SAL_DLLPUBLIC_EXPORT void* SAL_CALL component_getFactory(
+ sal_Char const* pImplName,
+ ::com::sun::star::lang::XMultiServiceFactory* pServiceManager,
+ ::com::sun::star::registry::XRegistryKey* pRegistryKey )
+{
+ return component_getFactoryHelper( pImplName, pServiceManager,
+ pRegistryKey, svgFilter );
+}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */