summaryrefslogtreecommitdiff
path: root/sw/source/filter/writer
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2015-10-28 14:29:19 +0100
committerMichael Stahl <mstahl@redhat.com>2015-10-28 14:47:18 +0100
commit34b5da1c701144d2d957d523d79e2547cbf40ece (patch)
treefb9a92e4ade328dcc78a30a46ff400bc9b678972 /sw/source/filter/writer
parent9092f96c63c05833ee5319935da1078afe216b55 (diff)
sw: replace boost::ptr_vector with std::vector<std::unique_ptr>
Change-Id: I1d9aa200734d264e3bc65ea39f8c2a2d03782f7b
Diffstat (limited to 'sw/source/filter/writer')
-rw-r--r--sw/source/filter/writer/wrtswtbl.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/writer/wrtswtbl.cxx b/sw/source/filter/writer/wrtswtbl.cxx
index 1b2ca2f933df..0dadce9a5b1b 100644
--- a/sw/source/filter/writer/wrtswtbl.cxx
+++ b/sw/source/filter/writer/wrtswtbl.cxx
@@ -67,7 +67,7 @@ SwWriteTableCell *SwWriteTableRow::AddCell( const SwTableBox *pBox,
SwWriteTableCell *pCell =
new SwWriteTableCell( pBox, nRow, nCol, nRowSpan, nColSpan,
nHeight, pBackgroundBrush );
- aCells.push_back( pCell );
+ m_Cells.push_back(std::unique_ptr<SwWriteTableCell>(pCell));
return pCell;
}