desktop/source/deployment/dp_services.cxx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-)
New commits: commit c55d5ef51a84716c9be69c13349439e552a3ed39 Author: Stephan Bergmann <sberg...@redhat.com> Date: Tue Aug 5 11:05:34 2014 +0200 Fix *_component_getFactory function type Change-Id: I354cf9cfa5f1a749b01d16c93dbe7b86784a7d34 diff --git a/desktop/source/deployment/dp_services.cxx b/desktop/source/deployment/dp_services.cxx index 9850e41..c38c0a4 100644 --- a/desktop/source/deployment/dp_services.cxx +++ b/desktop/source/deployment/dp_services.cxx @@ -73,11 +73,13 @@ extern "C" { SAL_DLLPUBLIC_EXPORT void * SAL_CALL deployment_component_getFactory( sal_Char const * pImplName, - lang::XMultiServiceFactory * pServiceManager, - registry::XRegistryKey * pRegistryKey ) + void * pServiceManager, + void * pRegistryKey ) { return component_getFactoryHelper( - pImplName, pServiceManager, pRegistryKey, + pImplName, + static_cast<css::lang::XMultiServiceFactory *>(pServiceManager), + static_cast<css::registry::XRegistryKey *>(pRegistryKey), dp_registry::backend::configuration::serviceDecl, dp_registry::backend::component::serviceDecl, dp_registry::backend::help::serviceDecl, _______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits