diff options
author | Michael Stahl <mstahl@redhat.com> | 2015-10-12 13:41:04 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-10-12 13:59:54 +0200 |
commit | da8e85f55445ab2bb204fc3b44ce8793aeeef9d5 (patch) | |
tree | cae2a2db31e8c806764445fd2ed81ff77815c00e /sw | |
parent | cc47088d8733603b351259d3a4b5bf1b4270e8f0 (diff) |
sw: replace boost::ptr_vector with std::vector<std::unique_ptr>
Change-Id: I72ec77d4226c98abbe849a03dc009f46f695923b
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/core/inc/UndoTable.hxx | 2 | ||||
-rw-r--r-- | sw/source/core/undo/untbl.cxx | 28 |
2 files changed, 15 insertions, 15 deletions
diff --git a/sw/source/core/inc/UndoTable.hxx b/sw/source/core/inc/UndoTable.hxx index ddd9673df7e2..fbd5f05fdf38 100644 --- a/sw/source/core/inc/UndoTable.hxx +++ b/sw/source/core/inc/UndoTable.hxx @@ -174,7 +174,7 @@ class SwUndoTableNdsChg : public SwUndo, private boost::noncopyable bool operator<(const _BoxMove& other) const { return index < other.index; }; }; std::unique_ptr< std::set<_BoxMove> > pNewSttNds; - std::unique_ptr< SwUndoSaveSections > pDelSects; + std::unique_ptr<SwUndoSaveSections> m_pDelSects; long nMin, nMax; // for redo of delete column sal_uLong nSttNode, nCurrBox; sal_uInt16 nCount, nRelDiff, nAbsDiff, nSetColType; diff --git a/sw/source/core/undo/untbl.cxx b/sw/source/core/undo/untbl.cxx index 3ecead828add..34ff5ca9af7f 100644 --- a/sw/source/core/undo/untbl.cxx +++ b/sw/source/core/undo/untbl.cxx @@ -64,8 +64,6 @@ #include <unochart.hxx> #include <calbck.hxx> -#include <boost/ptr_container/ptr_vector.hpp> - #include <memory> #include <vector> @@ -83,10 +81,7 @@ typedef std::vector<std::shared_ptr<SfxItemSet> > SfxItemSets; -class SwUndoSaveSections : public boost::ptr_vector<SwUndoSaveSection> { -public: - explicit SwUndoSaveSections(size_type n) : boost::ptr_vector<SwUndoSaveSection>(n) {} -}; +class SwUndoSaveSections : public std::vector<std::unique_ptr<SwUndoSaveSection>> {}; class SwUndoMoves : public std::vector<std::unique_ptr<SwUndoMove>> {}; @@ -1662,14 +1657,14 @@ void SwUndoTableNdsChg::SaveNewBoxes( const SwTableNode& rTableNd, void SwUndoTableNdsChg::SaveSection( SwStartNode* pSttNd ) { OSL_ENSURE( IsDelBox(), "wrong Action" ); - if( pDelSects.get() == NULL ) - pDelSects.reset( new SwUndoSaveSections( 10 ) ); + if (m_pDelSects.get() == nullptr) + m_pDelSects.reset(new SwUndoSaveSections); SwTableNode* pTableNd = pSttNd->FindTableNode(); - SwUndoSaveSection* pSave = new SwUndoSaveSection; + std::unique_ptr<SwUndoSaveSection> pSave(new SwUndoSaveSection); pSave->SaveSection( SwNodeIndex( *pSttNd )); - pDelSects->push_back( pSave ); + m_pDelSects->push_back(std::move(pSave)); nSttNode = pTableNd->GetIndex(); } @@ -1701,9 +1696,9 @@ void SwUndoTableNdsChg::UndoImpl(::sw::UndoRedoContext & rContext) SwTableBoxes& rLnBoxes = pCpyBox->GetUpper()->GetTabBoxes(); // restore sections - for( size_t n = pDelSects->size(); n; ) + for (size_t n = m_pDelSects->size(); n; ) { - SwUndoSaveSection* pSave = &(*pDelSects)[ --n ]; + SwUndoSaveSection *const pSave = (*m_pDelSects)[ --n ].get(); pSave->RestoreSection( &rDoc, &aIdx, SwTableBoxStartNode ); if( pSave->GetHistory() ) pSave->GetHistory()->Rollback( &rDoc ); @@ -1711,7 +1706,7 @@ void SwUndoTableNdsChg::UndoImpl(::sw::UndoRedoContext & rContext) pCpyBox->GetUpper() ); rLnBoxes.push_back( pBox ); } - pDelSects->clear(); + m_pDelSects->clear(); } else if( !pNewSttNds->empty() ) { @@ -1909,7 +1904,12 @@ void SwUndoTableNdsChg::RedoImpl(::sw::UndoRedoContext & rContext) if( pUndo ) { - pDelSects->transfer( pDelSects->begin(), *static_cast<SwUndoTableNdsChg *>(pUndo)->pDelSects.get() ); + m_pDelSects->insert(m_pDelSects->begin(), + std::make_move_iterator( + static_cast<SwUndoTableNdsChg *>(pUndo)->m_pDelSects->begin()), + std::make_move_iterator( + static_cast<SwUndoTableNdsChg *>(pUndo)->m_pDelSects->end())); + static_cast<SwUndoTableNdsChg *>(pUndo)->m_pDelSects->clear(); delete pUndo; } rDoc.GetIDocumentUndoRedo().DoUndo( false ); |