summaryrefslogtreecommitdiff
path: root/desktop/source/deployment/registry
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-28 13:55:01 +0200
committerNoel Grandin <noel@peralex.com>2015-10-29 08:57:08 +0200
commit7cdbde4867b14ae382262dc394ba83e609a8eecf (patch)
tree5fa180d35a8423a7857b0d57355f74a6d26b5bec /desktop/source/deployment/registry
parentab20a5888d3a7f964ef2fb3afe2477825da6037e (diff)
Initialize Sequence<beans::NamedValue> from initializer_lists
Change-Id: I216dcbd983dcf3df79df9fda371b93114540a9d8
Diffstat (limited to 'desktop/source/deployment/registry')
-rw-r--r--desktop/source/deployment/registry/component/dp_component.cxx14
1 files changed, 6 insertions, 8 deletions
diff --git a/desktop/source/deployment/registry/component/dp_component.cxx b/desktop/source/deployment/registry/component/dp_component.cxx
index 35b0205e5394..cf996068fdd8 100644
--- a/desktop/source/deployment/registry/component/dp_component.cxx
+++ b/desktop/source/deployment/registry/component/dp_component.cxx
@@ -1712,11 +1712,11 @@ void BackendImpl::ComponentsPackageImpl::processPackage_(
}
// This relies on the root component context's service manager
// supporting the extended XSet semantics:
- css::uno::Sequence< css::beans::NamedValue > args(2);
- args[0].Name = "uri";
- args[0].Value <<= expandUnoRcUrl(url);
- args[1].Name = "component-context";
- args[1].Value <<= context;
+ css::uno::Sequence< css::beans::NamedValue > args
+ {
+ { "uri", css::uno::makeAny(expandUnoRcUrl(url)) },
+ { "component-context", css::uno::makeAny(context) }
+ };
css::uno::Reference< css::container::XSet > smgr(
that->getRootContext()->getServiceManager(),
css::uno::UNO_QUERY_THROW);
@@ -1728,9 +1728,7 @@ void BackendImpl::ComponentsPackageImpl::processPackage_(
if (!startup) {
// This relies on the root component context's service manager
// supporting the extended XSet semantics:
- css::uno::Sequence< css::beans::NamedValue > args(1);
- args[0].Name = "uri";
- args[0].Value <<= expandUnoRcUrl(url);
+ css::uno::Sequence< css::beans::NamedValue > args { { "uri", css::uno::makeAny(expandUnoRcUrl(url)) } };
css::uno::Reference< css::container::XSet > smgr(
that->getRootContext()->getServiceManager(),
css::uno::UNO_QUERY_THROW);