summaryrefslogtreecommitdiff
path: root/cui/source/options/optaboutconfig.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-05-19 09:10:43 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-05-19 08:33:10 +0000
commitd4d2fc24793960a07275e49706b90928b4a0c764 (patch)
tree3d5bd19190426cee18730893ac9ff292caf2566e /cui/source/options/optaboutconfig.cxx
parent71b74f8fd1fc84cf92dddeab02647b8b765d0d4a (diff)
clang-tidy modernize-make-unique
Change-Id: I550bb69ddcef69906027516ccde62cf8e87c295b Reviewed-on: https://gerrit.libreoffice.org/25138 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'cui/source/options/optaboutconfig.cxx')
-rw-r--r--cui/source/options/optaboutconfig.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/cui/source/options/optaboutconfig.cxx b/cui/source/options/optaboutconfig.cxx
index 3661856620b3..15d354472bf0 100644
--- a/cui/source/options/optaboutconfig.cxx
+++ b/cui/source/options/optaboutconfig.cxx
@@ -204,12 +204,12 @@ void CuiAboutConfigTabPage::InsertEntry(const OUString& rPropertyPath, const OUS
bool bInsertToPrefBox)
{
SvTreeListEntry* pEntry = new SvTreeListEntry;
- pEntry->AddItem(std::unique_ptr<SvLBoxContextBmp>(
- new SvLBoxContextBmp( Image(), Image(), false))); //It is needed, otherwise causes crash
- pEntry->AddItem(std::unique_ptr<SvLBoxString>(new SvLBoxString(rProp)));
- pEntry->AddItem(std::unique_ptr<SvLBoxString>(new SvLBoxString(rStatus)));
- pEntry->AddItem(std::unique_ptr<SvLBoxString>(new SvLBoxString(rType)));
- pEntry->AddItem(std::unique_ptr<SvLBoxString>(new SvLBoxString(rValue)));
+ pEntry->AddItem(o3tl::make_unique<SvLBoxContextBmp>(
+ Image(), Image(), false)); //It is needed, otherwise causes crash
+ pEntry->AddItem(o3tl::make_unique<SvLBoxString>(rProp));
+ pEntry->AddItem(o3tl::make_unique<SvLBoxString>(rStatus));
+ pEntry->AddItem(o3tl::make_unique<SvLBoxString>(rType));
+ pEntry->AddItem(o3tl::make_unique<SvLBoxString>(rValue));
pEntry->SetUserData( new UserData(rPropertyPath) );
if(bInsertToPrefBox)