diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-01-20 11:05:38 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-01-20 11:06:01 +0100 |
commit | ea0bb58d98b651599dabf9a93f9568f46c3baeb1 (patch) | |
tree | 6a340850ddf9d4c8161c688b49873635ed29483e /sc | |
parent | 83853b9c86ee867f743b6b1827c6eb6b3a5c21d5 (diff) |
Drop unused comphelper::service_decl::component_getFactoryHelper params
Change-Id: Ia47c0bc3539ddf8f925cd053a2431c742c46d337
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/vba/service.cxx | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/sc/source/ui/vba/service.cxx b/sc/source/ui/vba/service.cxx index 64222f5acf7a..cbe2e2511c9f 100644 --- a/sc/source/ui/vba/service.cxx +++ b/sc/source/ui/vba/service.cxx @@ -17,8 +17,6 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #include <cppuhelper/implementationentry.hxx> -#include <com/sun/star/lang/XMultiServiceFactory.hpp> -#include <com/sun/star/registry/XRegistryKey.hpp> #include <comphelper/servicedecl.hxx> // component exports @@ -57,11 +55,10 @@ extern sdecl::ServiceDecl const serviceDecl; extern "C" { SAL_DLLPUBLIC_EXPORT void * SAL_CALL vbaobj_component_getFactory( - const sal_Char * pImplName, lang::XMultiServiceFactory * pServiceManager, - registry::XRegistryKey * pRegistryKey ) + const sal_Char * pImplName, void *, void *) { void* pRet = component_getFactoryHelper( - pImplName, pServiceManager, pRegistryKey, range::serviceDecl, workbook::serviceDecl, worksheet::serviceDecl, window::serviceDecl, hyperlink::serviceDecl, application::serviceDecl ); + pImplName, range::serviceDecl, workbook::serviceDecl, worksheet::serviceDecl, window::serviceDecl, hyperlink::serviceDecl, application::serviceDecl ); return pRet; } } |