[Libreoffice-commits] core.git: shell/source

Stephan Bergmann sbergman at redhat.com
Thu Aug 28 07:40:36 PDT 2014


 shell/source/cmdmail/cmdmailentry.cxx     |    4 ++--
 shell/source/unix/exec/shellexecentry.cxx |    4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 5253732ca6ff31f3cce9e1ad3c65a48db721e966
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Thu Aug 28 16:40:02 2014 +0200

    Fix some *_component_getFactory function types
    
    Change-Id: I8e7cc2d26df27e2eb48ddec53ea0a4f1d1381e23

diff --git a/shell/source/cmdmail/cmdmailentry.cxx b/shell/source/cmdmail/cmdmailentry.cxx
index 33a343c..dfc099b 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 45f47a0..3b287ae 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;
 


More information about the Libreoffice-commits mailing list