summaryrefslogtreecommitdiff
path: root/cui/source/customize/acccfg.cxx
diff options
context:
space:
mode:
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);
}