diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-12-19 10:56:58 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-12-19 10:56:58 +0100 |
commit | 023e49921e11644b65af66996fd033c533f589f9 (patch) | |
tree | ba4acc4d4f3876d280425815e4bb17a601dc3ccb /cppuhelper | |
parent | 61e02585ea3ab6794fcae28c9b96d35b3ff96257 (diff) |
Legacy cppu::loadSharedLibComponentFactory isn't DISABLE_DYNLOADING cond.
Change-Id: I020d4fc382470d7bc08df9b88e42ac62c97cb47e
Diffstat (limited to 'cppuhelper')
-rw-r--r-- | cppuhelper/source/shlib.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cppuhelper/source/shlib.cxx b/cppuhelper/source/shlib.cxx index 972357b3c05c..fd88e5bf1eb7 100644 --- a/cppuhelper/source/shlib.cxx +++ b/cppuhelper/source/shlib.cxx @@ -265,8 +265,6 @@ void cppuhelper::detail::loadSharedLibComponentFactory( #endif } -#if !defined DISABLE_DYNLOADING - css::uno::Reference<css::uno::XInterface> cppu::loadSharedLibComponentFactory( rtl::OUString const & uri, rtl::OUString const & rPath, rtl::OUString const & rImplName, @@ -282,6 +280,8 @@ css::uno::Reference<css::uno::XInterface> cppu::loadSharedLibComponentFactory( return fac; } +#if !defined DISABLE_DYNLOADING + namespace { extern "C" void writeInfo(va_list * args) { |