summaryrefslogtreecommitdiffstats
path: root/sd/source/ui/func/futransf.cxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-09-25 11:59:51 +0100
committerCaolán McNamara <caolanm@redhat.com>2015-09-25 15:13:45 +0000
commit7de2777bff9afeacb872c6425d36dc93310302c7 (patch)
tree7d51ade5ef54f465b98cb182fb5dde2117651f36 /sd/source/ui/func/futransf.cxx
parentsd/source/ui/annotations boost->std (diff)
downloadcore-7de2777bff9afeacb872c6425d36dc93310302c7.tar.gz
core-7de2777bff9afeacb872c6425d36dc93310302c7.zip
sd/source/ui/func boost->std
Change-Id: I67874a8bad1549fd98e22a816d9fa52a17629a1e Reviewed-on: https://gerrit.libreoffice.org/18850 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sd/source/ui/func/futransf.cxx')
-rw-r--r--sd/source/ui/func/futransf.cxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/sd/source/ui/func/futransf.cxx b/sd/source/ui/func/futransf.cxx
index 671b23a5233e..16a07a9cefac 100644
--- a/sd/source/ui/func/futransf.cxx
+++ b/sd/source/ui/func/futransf.cxx
@@ -32,7 +32,6 @@
#include <svx/svxdlg.hxx>
#include <memory>
-#include <boost/scoped_ptr.hpp>
namespace sd {
@@ -75,7 +74,7 @@ void FuTransform::DoExecute( SfxRequest& rReq )
SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create();
if ( pFact )
{
- boost::scoped_ptr< SfxAbstractTabDialog > pDlg( pFact->CreateCaptionDialog( NULL, mpView ) );
+ std::unique_ptr< SfxAbstractTabDialog > pDlg( pFact->CreateCaptionDialog( NULL, mpView ) );
const sal_uInt16* pRange = pDlg->GetInputRanges( *aNewAttr.GetPool() );
SfxItemSet aCombSet( *aNewAttr.GetPool(), pRange );
@@ -95,7 +94,7 @@ void FuTransform::DoExecute( SfxRequest& rReq )
SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create();
if(pFact)
{
- boost::scoped_ptr< SfxAbstractTabDialog > pDlg( pFact->CreateSvxTransformTabDialog( NULL, &aSet, mpView ) );
+ std::unique_ptr< SfxAbstractTabDialog > pDlg( pFact->CreateSvxTransformTabDialog( NULL, &aSet, mpView ) );
if( pDlg.get() && (pDlg->Execute() == RET_OK) )
{
rReq.Done( *( pDlg->GetOutputItemSet() ) );