summaryrefslogtreecommitdiff
path: root/stoc
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-10-01 01:15:30 +0200
committerStephan Bergmann <sbergman@redhat.com>2013-10-01 01:15:30 +0200
commitd2e1dd559f4009a83f3ce6cb6617dfced010be74 (patch)
treeca0d7bcf880ff97105277b209c860eaf02d86335 /stoc
parent02a872cb2cb68338a9459dd7d922001ee6c9a343 (diff)
[API CHANGE] Stricter requirements for shlib.hxx function arguments
rLibName -> uri must be an (absolute file) URI, rPath must be empty, and xKey must be null in loadSharedLibComponentFactory. While incompatible in theory, these functions should only be called internally, anyway. Change-Id: Iab144b199e4e7db62358283efec6877a5da19bab
Diffstat (limited to 'stoc')
-rw-r--r--stoc/source/loader/dllcomponentloader.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/stoc/source/loader/dllcomponentloader.cxx b/stoc/source/loader/dllcomponentloader.cxx
index 0b2298766c31..854487dcecb0 100644
--- a/stoc/source/loader/dllcomponentloader.cxx
+++ b/stoc/source/loader/dllcomponentloader.cxx
@@ -185,7 +185,7 @@ Reference<XInterface> SAL_CALL DllComponentLoader::activate(
return loadSharedLibComponentFactory(
cppu::bootstrap_expandUri(rLibName), OUString(), rImplName, m_xSMgr,
- xKey, aPrefix );
+ css::uno::Reference<css::registry::XRegistryKey>(), aPrefix );
}