summaryrefslogtreecommitdiff
path: root/cui/source/customize/acccfg.cxx
diff options
context:
space:
mode:
authorSheikha AL-Hinai <sheikha443@gmail.com>2015-12-28 13:56:23 +0400
committerStephan Bergmann <sbergman@redhat.com>2016-01-05 11:47:50 +0000
commitd75b9fd582f0aa83bd2fc99028b3f83eb7171d61 (patch)
treeec1f2a307f773b18e0bf17a281a001fb0aa43bbf /cui/source/customize/acccfg.cxx
parentf961fef03906fc059a4a0c008799f68fc22727c1 (diff)
tdf#94205: Use o3tl::make_unique insted of new+std::move.
Change-Id: I9ff14760479d2ac882546e2e5b74ab750ba2fa4b Reviewed-on: https://gerrit.libreoffice.org/20984 Reviewed-by: Stephan Bergmann <sbergman@redhat.com> Tested-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'cui/source/customize/acccfg.cxx')
-rw-r--r--cui/source/customize/acccfg.cxx11
1 files changed, 4 insertions, 7 deletions
diff --git a/cui/source/customize/acccfg.cxx b/cui/source/customize/acccfg.cxx
index ee07d7e05e77..19cfe651410e 100644
--- a/cui/source/customize/acccfg.cxx
+++ b/cui/source/customize/acccfg.cxx
@@ -69,7 +69,7 @@
#include <vcl/help.hxx>
#include <rtl/ustrbuf.hxx>
#include <comphelper/sequenceashashmap.hxx>
-
+#include <o3tl/make_unique.hxx>
// namespaces
using namespace css;
@@ -911,13 +911,10 @@ void SfxAcceleratorConfigPage::CreateCustomItems(SvTreeListEntry* pEntry,
const OUString& sCol1 ,
const OUString& sCol2)
{
- std::unique_ptr<SfxAccCfgLBoxString_Impl> pStringItem1(
- new SfxAccCfgLBoxString_Impl(pEntry, 0, sCol1));
- pEntry->ReplaceItem(std::move(pStringItem1), 1);
- std::unique_ptr<SfxAccCfgLBoxString_Impl> pStringItem2(
- new SfxAccCfgLBoxString_Impl(pEntry, 0, sCol2));
- pEntry->ReplaceItem(std::move(pStringItem2), 2);
+ pEntry->ReplaceItem(o3tl::make_unique<SfxAccCfgLBoxString_Impl>(pEntry, 0, sCol1), 1);
+
+ pEntry->ReplaceItem(o3tl::make_unique<SfxAccCfgLBoxString_Impl>(pEntry, 0, sCol2), 2);
}