1 Fix for svgimport visibility bug
3 From: Thorsten Behrens <thb@openoffice.org>
8 comphelper/inc/comphelper/servicedecl.hxx | 6 +++---
9 1 files changed, 3 insertions(+), 3 deletions(-)
12 diff --git comphelper/inc/comphelper/servicedecl.hxx comphelper/inc/comphelper/servicedecl.hxx
13 index bd114be..1fa97cc 100644
14 --- comphelper/inc/comphelper/servicedecl.hxx
15 +++ comphelper/inc/comphelper/servicedecl.hxx
16 @@ -418,20 +418,20 @@ BOOST_PP_REPEAT_FROM_TO(1, COMPHELPER_SERVICEDECL_COMPONENT_HELPER_MAX_ARGS,
17 #define COMPHELPER_SERVICEDECL_make_exports(varargs_ ) \
20 - void SAL_CALL component_getImplementationEnvironment( const sal_Char** ppEnvTypeName, \
21 + SAL_DLLPUBLIC_EXPORT void SAL_CALL component_getImplementationEnvironment( const sal_Char** ppEnvTypeName, \
22 uno_Environment** /*ppEnv*/ ) \
24 *ppEnvTypeName = CPPU_CURRENT_LANGUAGE_BINDING_NAME; \
27 - sal_Bool SAL_CALL component_writeInfo( ::com::sun::star::lang::XMultiServiceFactory* pServiceManager, \
28 + SAL_DLLPUBLIC_EXPORT sal_Bool SAL_CALL component_writeInfo( ::com::sun::star::lang::XMultiServiceFactory* pServiceManager, \
29 ::com::sun::star::registry::XRegistryKey* pRegistryKey ) \
31 return component_writeInfoHelper( pServiceManager, pRegistryKey, \
32 BOOST_PP_SEQ_ENUM(varargs_) ); \
35 - void* SAL_CALL component_getFactory( sal_Char const* pImplName, \
36 + SAL_DLLPUBLIC_EXPORT void* SAL_CALL component_getFactory( sal_Char const* pImplName, \
37 ::com::sun::star::lang::XMultiServiceFactory* pServiceManager, \
38 ::com::sun::star::registry::XRegistryKey* pRegistryKey ) \