From 7de2777bff9afeacb872c6425d36dc93310302c7 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Fri, 25 Sep 2015 11:59:51 +0100 Subject: sd/source/ui/func boost->std MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I67874a8bad1549fd98e22a816d9fa52a17629a1e Reviewed-on: https://gerrit.libreoffice.org/18850 Reviewed-by: Caolán McNamara Tested-by: Caolán McNamara --- sd/source/ui/func/fuscale.cxx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'sd/source/ui/func/fuscale.cxx') diff --git a/sd/source/ui/func/fuscale.cxx b/sd/source/ui/func/fuscale.cxx index 6697f6f0f6cc..2c2db012d629 100644 --- a/sd/source/ui/func/fuscale.cxx +++ b/sd/source/ui/func/fuscale.cxx @@ -40,7 +40,6 @@ #include #include #include -#include namespace sd { @@ -72,7 +71,7 @@ void FuScale::DoExecute( SfxRequest& rReq ) if( !pArgs ) { SfxItemSet aNewAttr( mpDoc->GetPool(), SID_ATTR_ZOOM, SID_ATTR_ZOOM ); - boost::scoped_ptr pZoomItem; + std::unique_ptr pZoomItem; SvxZoomEnableFlags nZoomValues = SvxZoomEnableFlags::ALL; nValue = (sal_Int16) mpWindow->GetZoom(); @@ -111,7 +110,7 @@ void FuScale::DoExecute( SfxRequest& rReq ) pZoomItem->SetValueSet( nZoomValues ); aNewAttr.Put( *pZoomItem ); - boost::scoped_ptr pDlg; + std::unique_ptr pDlg; SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create(); if(pFact) { -- cgit