summaryrefslogtreecommitdiff
path: root/sw/source/core/edit/eddel.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/core/edit/eddel.cxx')
-rw-r--r--sw/source/core/edit/eddel.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/core/edit/eddel.cxx b/sw/source/core/edit/eddel.cxx
index 04c68f5e0447..e0d4eadcfb07 100644
--- a/sw/source/core/edit/eddel.cxx
+++ b/sw/source/core/edit/eddel.cxx
@@ -152,12 +152,12 @@ bool SwEditShell::Copy( SwEditShell* pDestShell )
SET_CURR_SHELL( pDestShell );
// List of insert positions for smart insert of block selections
- std::list< boost::shared_ptr<SwPosition> > aInsertList;
+ std::list< std::shared_ptr<SwPosition> > aInsertList;
// Fill list of insert positions
{
SwPosition * pPos = 0;
- boost::shared_ptr<SwPosition> pInsertPos;
+ std::shared_ptr<SwPosition> pInsertPos;
sal_uInt16 nMove = 0;
for(SwPaM& rPaM : GetCrsr()->GetRingContainer())
{
@@ -204,7 +204,7 @@ bool SwEditShell::Copy( SwEditShell* pDestShell )
SwNodeIndex aSttNdIdx( pDestShell->GetDoc()->GetNodes() );
sal_Int32 nSttCntIdx = 0;
// For block selection this list is filled with the insert positions
- std::list< boost::shared_ptr<SwPosition> >::iterator pNextInsert = aInsertList.begin();
+ std::list< std::shared_ptr<SwPosition> >::iterator pNextInsert = aInsertList.begin();
pDestShell->GetDoc()->GetIDocumentUndoRedo().StartUndo( UNDO_START, NULL );
for(SwPaM& rPaM : GetCrsr()->GetRingContainer())