diff options
author | Noel Grandin <noel@peralex.com> | 2015-06-12 16:04:07 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-06-15 09:46:14 +0200 |
commit | 1afb790a118f07e888f7a1a94a8fd06d0d8713dd (patch) | |
tree | b82bee79e3dd74f7a5b8ae7387ccb002b0de1831 /canvas/source/vcl | |
parent | c3a8adb2e06888fc237aa6e3d43c32d805a46537 (diff) |
inline COMPHELPER_SERVICEDECL_ macro
it was not adding any value
Change-Id: I6a911aac81e883f9155ed0cf24bfb7904efb3f92
Diffstat (limited to 'canvas/source/vcl')
-rw-r--r-- | canvas/source/vcl/services.cxx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/canvas/source/vcl/services.cxx b/canvas/source/vcl/services.cxx index 95ba8cba090c..c22cf773d1fb 100644 --- a/canvas/source/vcl/services.cxx +++ b/canvas/source/vcl/services.cxx @@ -77,6 +77,11 @@ namespace vclcanvas } // The C shared lib entry points -COMPHELPER_SERVICEDECL_EXPORTS2(vclcanvas, vclcanvas::vclCanvasDecl, vclcanvas::vclSpriteCanvasDecl) +extern "C" +SAL_DLLPUBLIC_EXPORT void* SAL_CALL vclcanvas_component_getFactory( sal_Char const* pImplName, + void*, void* ) +{ + return component_getFactoryHelper( pImplName, vclcanvas::vclCanvasDecl, vclcanvas::vclSpriteCanvasDecl ); +} /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |