summaryrefslogtreecommitdiffstats
path: root/extensions
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2015-06-05 16:25:40 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-06-05 16:42:04 +0200
commit621ab8571ee99b0d425cfb88892898884edb2eec (patch)
treec078aad1db26374275347a1d6f96c27e94c7f79a /extensions
parentWaE: ‘nLocalAttachedAxis’ may be used uninitialized in this function (diff)
downloadcore-621ab8571ee99b0d425cfb88892898884edb2eec.tar.gz
core-621ab8571ee99b0d425cfb88892898884edb2eec.zip
abpilot: fix relative reference of embedded data source
With this, not only the MM wizard, but the address book data source wizard can create relative references correctly. Change-Id: Id7357dbcc4503ca69595992ee7ebd6b1234d386a
Diffstat (limited to 'extensions')
-rw-r--r--extensions/source/abpilot/datasourcehandling.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/extensions/source/abpilot/datasourcehandling.cxx b/extensions/source/abpilot/datasourcehandling.cxx
index 01157758eb27..f74c5307fa06 100644
--- a/extensions/source/abpilot/datasourcehandling.cxx
+++ b/extensions/source/abpilot/datasourcehandling.cxx
@@ -402,7 +402,8 @@ namespace abp
uno::Sequence<beans::PropertyValue> aSequence = comphelper::InitPropertySequence(
{
{"TargetStorage", uno::makeAny(xStorage)},
- {"StreamRelPath", uno::makeAny(aStreamRelPath)}
+ {"StreamRelPath", uno::makeAny(aStreamRelPath)},
+ {"BaseURI", uno::makeAny(aOwnURL)}
});
xStorable->storeAsURL(sTmpName, aSequence);
m_pImpl->sName = sTmpName;