diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-06-05 16:25:40 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-06-05 16:42:04 +0200 |
commit | 621ab8571ee99b0d425cfb88892898884edb2eec (patch) | |
tree | c078aad1db26374275347a1d6f96c27e94c7f79a /extensions | |
parent | 20d8267ac702ec6e910481c14eb46c6431a40fe9 (diff) |
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.cxx | 3 |
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; |