diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-10-01 00:08:26 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-10-01 00:56:18 +0200 |
commit | c91f5851d0412cbf8fbe1b3d8da0048241aaba09 (patch) | |
tree | ce6eed0bf693759ab6eb680ad8ee4c6508f7da15 /include | |
parent | 69f1846f4095a9dc607a0e568980d8625d657c94 (diff) |
[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
Diffstat (limited to 'include')
-rw-r--r-- | include/cppuhelper/shlib.hxx | 21 |
1 files changed, 0 insertions, 21 deletions
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 <osl/module.hxx> #include <com/sun/star/lang/XMultiServiceFactory.hpp> #include <com/sun/star/registry/XRegistryKey.hpp> #include <com/sun/star/loader/CannotActivateFactoryException.hpp> @@ -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 |