summaryrefslogtreecommitdiff
path: root/writerfilter
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2011-04-15 17:11:53 +0200
committerDavid Tardon <dtardon@redhat.com>2011-04-15 17:11:53 +0200
commitaf79d010d73efea84bb8ecc75d8f88e406d323e4 (patch)
treea76e5502069c0919f1f2f505efd48b724b0c5bd9 /writerfilter
parent7d4f1eafcf2cb3603b54eed31885824e46f0b8a6 (diff)
component_getFactory must be SAL_DLLPUBLIC_EXPORT
Diffstat (limited to 'writerfilter')
-rw-r--r--writerfilter/unocomponent/component.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/writerfilter/unocomponent/component.cxx b/writerfilter/unocomponent/component.cxx
index a2f44a636460..d715a70a9ae1 100644
--- a/writerfilter/unocomponent/component.cxx
+++ b/writerfilter/unocomponent/component.cxx
@@ -57,12 +57,12 @@ static struct ::cppu::ImplementationEntry s_component_entries [] =
};
- void SAL_CALL component_getImplementationEnvironment(const sal_Char ** ppEnvTypeName, uno_Environment ** /*ppEnv*/ )
+SAL_DLLPUBLIC_EXPORT void SAL_CALL component_getImplementationEnvironment(const sal_Char ** ppEnvTypeName, uno_Environment ** /*ppEnv*/ )
{
*ppEnvTypeName = CPPU_CURRENT_LANGUAGE_BINDING_NAME;
}
-void * SAL_CALL component_getFactory(sal_Char const * implName, ::com::sun::star::lang::XMultiServiceFactory * xMgr, ::com::sun::star::registry::XRegistryKey * xRegistry )
+SAL_DLLPUBLIC_EXPORT void * SAL_CALL component_getFactory(sal_Char const * implName, ::com::sun::star::lang::XMultiServiceFactory * xMgr, ::com::sun::star::registry::XRegistryKey * xRegistry )
{
fprintf(stderr, "Loading service: %s: ", implName);