diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-08-28 18:07:53 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-08-28 18:07:53 +0200 |
commit | a6e28fe9c6fa8ce8be4fc9a839f1a3b55644dacd (patch) | |
tree | 9dedeaa15238cba8d09db15db231fc65ebdee6a5 /ucb/source | |
parent | 9cd55a26c285e5c8535b666866439d7bcf4f2baf (diff) |
Fix *_component_getFactory function type
Change-Id: I6b7a9e15da83f1d53a5e59d26b643c363e652619
Diffstat (limited to 'ucb/source')
-rw-r--r-- | ucb/source/ucp/expand/ucpexpand.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ucb/source/ucp/expand/ucpexpand.cxx b/ucb/source/ucp/expand/ucpexpand.cxx index 5792f58146f0..5393a2ef95b9 100644 --- a/ucb/source/ucp/expand/ucpexpand.cxx +++ b/ucb/source/ucp/expand/ucpexpand.cxx @@ -245,8 +245,8 @@ extern "C" SAL_DLLPUBLIC_EXPORT void * SAL_CALL ucpexpand1_component_getFactory( const sal_Char * pImplName, - lang::XMultiServiceFactory * pServiceManager, - registry::XRegistryKey * pRegistryKey ) + void * pServiceManager, + void * pRegistryKey ) { return ::cppu::component_getFactoryHelper( pImplName, pServiceManager, pRegistryKey, s_entries ); |