summaryrefslogtreecommitdiffstats
path: root/cppuhelper/source/compat.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-12-13 15:10:18 +0100
committerStephan Bergmann <sbergman@redhat.com>2013-12-13 15:13:57 +0100
commit2f7b329297c65d75f428d389a53b5822e38b0ec5 (patch)
tree258fa3c153d972bfa961937686e39dc2275b5a57 /cppuhelper/source/compat.cxx
parentdrawingml export: handle child shapes when exporting groupshapes (diff)
downloadcore-2f7b329297c65d75f428d389a53b5822e38b0ec5.tar.gz
core-2f7b329297c65d75f428d389a53b5822e38b0ec5.zip
[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.cxx11
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: */