From ddc280920282ff3e2801e9a79f9dfa8a6c6f5699 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Thu, 17 Sep 2015 11:30:13 +0100 Subject: boost->std Change-Id: Idfbcfa1e5ba7bff92e98693c33c4b33a6beda08f --- sw/source/ui/frmdlg/frmpage.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sw/source/ui/frmdlg') diff --git a/sw/source/ui/frmdlg/frmpage.cxx b/sw/source/ui/frmdlg/frmpage.cxx index 983d9a0d8059..5f272d4f96a7 100644 --- a/sw/source/ui/frmdlg/frmpage.cxx +++ b/sw/source/ui/frmdlg/frmpage.cxx @@ -69,7 +69,7 @@ #include #include #include -#include +#include using namespace ::com::sun::star; using namespace ::sfx2; @@ -2768,7 +2768,7 @@ void SwFrmURLPage::Reset( const SfxItemSet *rSet ) const SfxPoolItem* pItem; if ( SfxItemState::SET == rSet->GetItemState( SID_DOCFRAME, true, &pItem)) { - boost::scoped_ptr pList(new TargetList); + std::unique_ptr pList(new TargetList); static_cast(pItem)->GetFrame()->GetTargetList(*pList); if( !pList->empty() ) { @@ -2805,7 +2805,7 @@ bool SwFrmURLPage::FillItemSet(SfxItemSet *rSet) { bool bModified = false; const SwFormatURL* pOldURL = static_cast(GetOldItem(*rSet, RES_URL)); - boost::scoped_ptr pFormatURL; + std::unique_ptr pFormatURL; if(pOldURL) pFormatURL.reset(static_cast(pOldURL->Clone())); else -- cgit