diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-06-13 10:46:16 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-06-13 10:46:16 +0200 |
commit | 5389b44827393c80df27e429ba446971a0d7a696 (patch) | |
tree | 2a14f1687f17df58ace194eff0d6f88955ec5f0e /editeng/source | |
parent | 4ffdb6750fa7d656d249a745f9c6d5ba98353b14 (diff) |
Let SfxSetItem ctor take SfxItemSet by unique_ptr
Change-Id: I219dd03477862169cd50eecc14822f6a023f879a
Diffstat (limited to 'editeng/source')
-rw-r--r-- | editeng/source/items/textitem.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/editeng/source/items/textitem.cxx b/editeng/source/items/textitem.cxx index 72de8968f410..c6882ca85ca2 100644 --- a/editeng/source/items/textitem.cxx +++ b/editeng/source/items/textitem.cxx @@ -20,6 +20,7 @@ #include <com/sun/star/style/CaseMap.hpp> #include <com/sun/star/awt/FontDescriptor.hpp> #include <com/sun/star/frame/status/FontHeight.hpp> +#include <o3tl/make_unique.hxx> #include <vcl/bitmapex.hxx> #include <tools/stream.hxx> #include <math.h> @@ -3258,7 +3259,7 @@ SfxPoolItem* SvxScriptTypeItem::Clone( SfxItemPool * ) const *************************************************************************/ SvxScriptSetItem::SvxScriptSetItem( sal_uInt16 nSlotId, SfxItemPool& rPool ) - : SfxSetItem( nSlotId, new SfxItemSet( rPool, + : SfxSetItem( nSlotId, o3tl::make_unique<SfxItemSet>( rPool, SID_ATTR_CHAR_FONT, SID_ATTR_CHAR_FONT )) { sal_uInt16 nLatin, nAsian, nComplex; |