summaryrefslogtreecommitdiff
path: root/sc/source/filter/excel/xistyle.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-11-12 10:16:04 +0200
committerNoel Grandin <noel@peralex.com>2015-11-12 10:45:05 +0200
commitf7b9212610edee748ceb0ebaa243def995b1951c (patch)
tree11d932796ee4d562a5c47262cc382919a9edc0aa /sc/source/filter/excel/xistyle.cxx
parent49b2208ffab0631a8aa150c26086f722aa8d978d (diff)
sc: boost::ptr_vector->std::vector<std::unique_ptr>
Change-Id: I4629d67b8cc69a2ace5a20f3d22505d7fc1ad10b
Diffstat (limited to 'sc/source/filter/excel/xistyle.cxx')
-rw-r--r--sc/source/filter/excel/xistyle.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/excel/xistyle.cxx b/sc/source/filter/excel/xistyle.cxx
index 21894beb18eb..4ff74b58780e 100644
--- a/sc/source/filter/excel/xistyle.cxx
+++ b/sc/source/filter/excel/xistyle.cxx
@@ -1569,7 +1569,7 @@ void XclImpXFBuffer::ReadXF( XclImpStream& rStrm )
{
XclImpXF* pXF = new XclImpXF( GetRoot() );
pXF->ReadXF( rStrm );
- maXFList.push_back( pXF );
+ maXFList.push_back( std::unique_ptr<XclImpXF>(pXF) );
}
void XclImpXFBuffer::ReadStyle( XclImpStream& rStrm )