From c91f5851d0412cbf8fbe1b3d8da0048241aaba09 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 1 Oct 2013 00:08:26 +0200 Subject: [API CHANGE] Remove unused cppu::invokeStaticComponentFactory again ...that has neither been intended for external use anyway, nor has it ever been used internally since its dead-on-arrival inception in b16ab7a751c04049b4171df412f1ef0f4f9b02f2 "Add invokeStaticComponentFactory() for statically linked components: Will be used for iOS at least." Sigh. Change-Id: I17795b2a1945809688deba0a5492415fbe877400 --- include/cppuhelper/shlib.hxx | 21 --------------------- 1 file changed, 21 deletions(-) (limited to 'include') diff --git a/include/cppuhelper/shlib.hxx b/include/cppuhelper/shlib.hxx index 9e78c4124d46..baf3a8d56ae4 100644 --- a/include/cppuhelper/shlib.hxx +++ b/include/cppuhelper/shlib.hxx @@ -19,7 +19,6 @@ #ifndef _CPPUHELPER_SHLIB_HXX_ #define _CPPUHELPER_SHLIB_HXX_ -#include #include #include #include @@ -77,26 +76,6 @@ SAL_CALL loadSharedLibComponentFactory( ::rtl::OUString const & rPrefix ) SAL_THROW( (::com::sun::star::loader::CannotActivateFactoryException) ); -/** Gets the factory out of an already loaded (for instance statically linked) component. - - @param pGetter the component's component_getFactory function - @param rImplName implementation to be retrieved from the library - @param xMgr service manager to be provided to the component - @param xKey registry key to be provided to the component - @param rPrefix optional component prefix - @return - factory instance (com::sun::star::lang::XSingleComponentFactory or legacy - com::sun::star::lang::XSingleServiceFactory) -*/ -CPPUHELPER_DLLPUBLIC ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > -SAL_CALL invokeStaticComponentFactory( - oslGenericFunction pGetter, - ::rtl::OUString const & rImplName, - ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > const & xMgr, - ::com::sun::star::uno::Reference< ::com::sun::star::registry::XRegistryKey > const & xKey, - ::rtl::OUString const & rPrefix ) - SAL_THROW( (::com::sun::star::loader::CannotActivateFactoryException) ); - /** Invokes component_writeInfo() function of specified component library. You can give either a fully qualified libname or single lib name. The libname need not be pre/postfixed (e.g. xxx.dll). You can give parameter rPath to force lookup of the library in a specific -- cgit