diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-08-28 16:40:02 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-08-28 16:40:02 +0200 |
commit | 5253732ca6ff31f3cce9e1ad3c65a48db721e966 (patch) | |
tree | eb5104533a6913737c0ae7ae4c4e907de6cb1861 /shell | |
parent | 54bdfe0a891f2119bc35c5d82ecbc94c8cb13c0b (diff) |
Fix some *_component_getFactory function types
Change-Id: I8e7cc2d26df27e2eb48ddec53ea0a4f1d1381e23
Diffstat (limited to 'shell')
-rw-r--r-- | shell/source/cmdmail/cmdmailentry.cxx | 4 | ||||
-rw-r--r-- | shell/source/unix/exec/shellexecentry.cxx | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/shell/source/cmdmail/cmdmailentry.cxx b/shell/source/cmdmail/cmdmailentry.cxx index 33a343ca9989..dfc099b95a1b 100644 --- a/shell/source/cmdmail/cmdmailentry.cxx +++ b/shell/source/cmdmail/cmdmailentry.cxx @@ -55,8 +55,8 @@ extern "C" SAL_DLLPUBLIC_EXPORT void* SAL_CALL cmdmail_component_getFactory( const sal_Char* pImplName, - SAL_UNUSED_PARAMETER uno_Interface* /*pSrvManager*/, - SAL_UNUSED_PARAMETER uno_Interface* /*pRegistryKey*/ ) + SAL_UNUSED_PARAMETER void* /*pSrvManager*/, + SAL_UNUSED_PARAMETER void* /*pRegistryKey*/ ) { Reference< XSingleComponentFactory > xFactory; diff --git a/shell/source/unix/exec/shellexecentry.cxx b/shell/source/unix/exec/shellexecentry.cxx index 45f47a0c3684..3b287ae47ffd 100644 --- a/shell/source/unix/exec/shellexecentry.cxx +++ b/shell/source/unix/exec/shellexecentry.cxx @@ -53,8 +53,8 @@ extern "C" SAL_DLLPUBLIC_EXPORT void* SAL_CALL syssh_component_getFactory( const sal_Char* pImplName, - SAL_UNUSED_PARAMETER uno_Interface* /*pSrvManager*/, - SAL_UNUSED_PARAMETER uno_Interface* /*pRegistryKey*/ ) + SAL_UNUSED_PARAMETER void* /*pSrvManager*/, + SAL_UNUSED_PARAMETER void* /*pRegistryKey*/ ) { Reference< XSingleComponentFactory > xFactory; |