diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-08-21 17:44:40 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-08-21 17:44:40 +0200 |
commit | bf640ba048704220292411e4f2bcc0d3c62caa32 (patch) | |
tree | 1ed2cecb9fc13b88abdbe90eafe0a3b6a7fb1ca7 /scripting | |
parent | d8fcd8ca9af087e98a2f6d9cbcf6eb42cddd0c74 (diff) |
Fix *_component_getFactory function type
Change-Id: Id16c653554f5573dc862e0798747b7337ff74d44
Diffstat (limited to 'scripting')
-rw-r--r-- | scripting/source/provider/MasterScriptProvider.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripting/source/provider/MasterScriptProvider.cxx b/scripting/source/provider/MasterScriptProvider.cxx index 8d0385cca039..8f59d97bfba7 100644 --- a/scripting/source/provider/MasterScriptProvider.cxx +++ b/scripting/source/provider/MasterScriptProvider.cxx @@ -900,8 +900,8 @@ extern "C" */ SAL_DLLPUBLIC_EXPORT void * SAL_CALL scriptframe_component_getFactory( const sal_Char * pImplName, - lang::XMultiServiceFactory * pServiceManager, - registry::XRegistryKey * pRegistryKey ) + void * pServiceManager, + void * pRegistryKey ) { return ::cppu::component_getFactoryHelper( pImplName, pServiceManager, pRegistryKey, ::scripting_runtimemgr::s_entries ); |