diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-08-06 18:34:57 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-08-06 18:34:57 +0200 |
commit | 5f7f1863e3046eff70444f5a273229e40207c0bd (patch) | |
tree | 56bb7477a80538c0387b6e026af684c694f44751 /canvas/source/factory | |
parent | 14e81a12b0fa6a7bcd9fb29870db8b8bb67b25dd (diff) |
Fix *_component_getFactory function type
Change-Id: Ic9cd9e1a8188b810e0db336c5844ffa943f0c7c4
Diffstat (limited to 'canvas/source/factory')
-rw-r--r-- | canvas/source/factory/cf_service.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/canvas/source/factory/cf_service.cxx b/canvas/source/factory/cf_service.cxx index a432e62ca1c4..e9c31579d479 100644 --- a/canvas/source/factory/cf_service.cxx +++ b/canvas/source/factory/cf_service.cxx @@ -513,8 +513,8 @@ extern "C" { SAL_DLLPUBLIC_EXPORT void * SAL_CALL canvasfactory_component_getFactory( sal_Char const * pImplName, - lang::XMultiServiceFactory * pServiceManager, - registry::XRegistryKey * pRegistryKey ) + void * pServiceManager, + void * pRegistryKey ) { return ::cppu::component_getFactoryHelper( pImplName, pServiceManager, pRegistryKey, s_entries ); |