summaryrefslogtreecommitdiffstats
path: root/configmgr/source/configurationregistry.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-30 07:59:06 +0200
committerNoel Grandin <noel@peralex.com>2015-10-30 11:08:36 +0200
commitcb4fa1d1e2e61b686442a9d26220c0f1a6e1d4e7 (patch)
tree2d819dbc32230f7af209b59a5c1f262f4964fa84 /configmgr/source/configurationregistry.cxx
parentUNO: no need to use OUString constructor when calling createInstance (diff)
downloadcore-cb4fa1d1e2e61b686442a9d26220c0f1a6e1d4e7.tar.gz
core-cb4fa1d1e2e61b686442a9d26220c0f1a6e1d4e7.zip
use uno::Reference::set method instead of assignment
Change-Id: I080668f86f0ab8b3bba857ee21411f907ae285c4
Diffstat (limited to 'configmgr/source/configurationregistry.cxx')
-rw-r--r--configmgr/source/configurationregistry.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/configmgr/source/configurationregistry.cxx b/configmgr/source/configurationregistry.cxx
index 4fadaf6a1f8b..2d0274628292 100644
--- a/configmgr/source/configurationregistry.cxx
+++ b/configmgr/source/configurationregistry.cxx
@@ -323,7 +323,7 @@ Service::Service(
{
assert(context.is());
try {
- provider_ = css::uno::Reference< css::lang::XMultiServiceFactory >(
+ provider_.set(
context->getServiceManager()->createInstanceWithContext(
"com.sun.star.configuration.DefaultProvider", context),
css::uno::UNO_QUERY_THROW);