summaryrefslogtreecommitdiffstats
path: root/configmgr/source/data.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2019-02-19 16:00:52 +0100
committerStephan Bergmann <sbergman@redhat.com>2019-02-19 17:39:16 +0100
commit5206992e6e9b22b48cea0a4a7626ee576c66492e (patch)
treedfc29178d2536d31d8de06556a32503feec3fe2b /configmgr/source/data.cxx
parenttdf#112689:Replace chained O(U)StringBuffer::append() with operator+ (diff)
downloadcore-5206992e6e9b22b48cea0a4a7626ee576c66492e.tar.gz
core-5206992e6e9b22b48cea0a4a7626ee576c66492e.zip
Some uses of C++17 class template argument deduction
Change-Id: I47c469c0fcdff41d83729be9489c946e81ef3686 Reviewed-on: https://gerrit.libreoffice.org/68020 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'configmgr/source/data.cxx')
-rw-r--r--configmgr/source/data.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/configmgr/source/data.cxx b/configmgr/source/data.cxx
index a24359fdb664..6eb2d5902db3 100644
--- a/configmgr/source/data.cxx
+++ b/configmgr/source/data.cxx
@@ -300,7 +300,7 @@ NodeMap & Data::getComponents() const {
Additions * Data::addExtensionXcuAdditions(
OUString const & url, int layer)
{
- rtl::Reference< ExtensionXcu > item(new ExtensionXcu);
+ rtl::Reference item(new ExtensionXcu);
ExtensionXcuAdditions::iterator i(
extensionXcuAdditions_.emplace(
url, rtl::Reference< ExtensionXcu >()).first);