summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-07-30 15:44:02 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-07-30 15:46:14 +0200
commit20d08026218cf4257693c706c97030b8d518aa68 (patch)
treeef53009bd7704d13eb831876214caa3c01b1072d
parenta45d968888e5970786528a74fd2063a6f9f25460 (diff)
Fix *_component_getFactory function type
Change-Id: If66efdb6a00c383ba72898f601ff3d674e153704
-rw-r--r--writerfilter/source/filter/WriterFilter.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/writerfilter/source/filter/WriterFilter.cxx b/writerfilter/source/filter/WriterFilter.cxx
index d600e58c31c5..9d37117bd8b6 100644
--- a/writerfilter/source/filter/WriterFilter.cxx
+++ b/writerfilter/source/filter/WriterFilter.cxx
@@ -45,7 +45,7 @@ static const struct ::cppu::ImplementationEntry s_component_entries [] =
{ 0, 0, 0, 0, 0, 0 } // terminate with NULL
};
-SAL_DLLPUBLIC_EXPORT void * SAL_CALL writerfilter_component_getFactory(sal_Char const * implName, ::com::sun::star::lang::XMultiServiceFactory * xMgr, ::com::sun::star::registry::XRegistryKey * xRegistry )
+SAL_DLLPUBLIC_EXPORT void * SAL_CALL writerfilter_component_getFactory(sal_Char const * implName, void * xMgr, void * xRegistry )
{
return ::cppu::component_getFactoryHelper(implName, xMgr, xRegistry, s_component_entries );
}