diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-12-13 15:10:18 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-12-13 15:13:57 +0100 |
commit | 2f7b329297c65d75f428d389a53b5822e38b0ec5 (patch) | |
tree | 258fa3c153d972bfa961937686e39dc2275b5a57 /cppuhelper/source/compat.cxx | |
parent | 445d3d8484d6e480f461de305c9dc4def067cf20 (diff) |
[API CHANGE] remove cppu::loadSharedLibComponentFactory w/ rPrefix again
...it was never meant to be called by client code anyway and is no longer needed
to be exposed since the global service manager implementation moved to
cppuhelper.
Change-Id: If2d0510b2364084d36edeb156a3459d9b8aeb983
Diffstat (limited to 'cppuhelper/source/compat.cxx')
-rw-r--r-- | cppuhelper/source/compat.cxx | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/cppuhelper/source/compat.cxx b/cppuhelper/source/compat.cxx index c5075402f5ad..97605b01826b 100644 --- a/cppuhelper/source/compat.cxx +++ b/cppuhelper/source/compat.cxx @@ -103,6 +103,17 @@ invokeStaticComponentFactory( for (;;) { std::abort(); } // avoid "must return a value" warnings } +SAL_DLLPUBLIC_EXPORT css::uno::Reference<css::uno::XInterface> SAL_CALL +loadSharedLibComponentFactory( + rtl::OUString const &, rtl::OUString const &, rtl::OUString const &, + css::uno::Reference<css::lang::XMultiServiceFactory> const &, + css::uno::Reference<css::registry::XRegistryKey> const &, + rtl::OUString const &) + SAL_THROW((css::loader::CannotActivateFactoryException)) +{ + for (;;) { std::abort(); } // avoid "must return a value" warnings +} + } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |