summaryrefslogtreecommitdiffstats
path: root/svx/source/dialog/searchcharmap.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/dialog/searchcharmap.cxx')
-rw-r--r--svx/source/dialog/searchcharmap.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/dialog/searchcharmap.cxx b/svx/source/dialog/searchcharmap.cxx
index 115ca8b36ba7..09868195aa66 100644
--- a/svx/source/dialog/searchcharmap.cxx
+++ b/svx/source/dialog/searchcharmap.cxx
@@ -404,8 +404,8 @@ svx::SvxShowCharSetItem* SvxSearchCharSet::ImplGetItem( int _nPos )
if ( aFind == m_aItems.end() )
{
OSL_ENSURE(m_xAccessible.is(), "Who wants to create a child of my table without a parent?");
- std::shared_ptr<svx::SvxShowCharSetItem> xItem(new svx::SvxShowCharSetItem(*this,
- m_xAccessible.get(), sal::static_int_cast< sal_uInt16 >(_nPos)));
+ auto xItem = std::make_shared<svx::SvxShowCharSetItem>(*this,
+ m_xAccessible.get(), sal::static_int_cast< sal_uInt16 >(_nPos));
aFind = m_aItems.emplace(_nPos, xItem).first;
OUStringBuffer buf;
std::unordered_map<sal_Int32,sal_UCS4>::const_iterator got = m_aItemList.find (_nPos);