summaryrefslogtreecommitdiff
path: root/sc/source/filter/html
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-11-12 12:45:48 +0200
committerNoel Grandin <noel@peralex.com>2015-11-13 10:54:17 +0200
commit6f6668c1f28ddb42b940c56f7fa24c37fd2e1850 (patch)
treee125a47a24c53e6323d0149089ca2945025a6bb1 /sc/source/filter/html
parent438a3f77e3814f90e2e3727e6d482d66e3259d36 (diff)
sc: boost::ptr_vector->std::vector
Change-Id: I667ffd21cd4454538a38b19a0a0a69e811c5b54b
Diffstat (limited to 'sc/source/filter/html')
-rw-r--r--sc/source/filter/html/htmlexp2.cxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/sc/source/filter/html/htmlexp2.cxx b/sc/source/filter/html/htmlexp2.cxx
index aa80aa2ded14..aab92defefab 100644
--- a/sc/source/filter/html/htmlexp2.cxx
+++ b/sc/source/filter/html/htmlexp2.cxx
@@ -106,9 +106,8 @@ void ScHTMLExport::FillGraphList( const SdrPage* pPage, SCTAB nTab,
aSpace.Width() /= 2;
aSpace.Height() /= 2;
}
- ScHTMLGraphEntry* pE = new ScHTMLGraphEntry( pObject,
- aR, aSize, bInCell, aSpace );
- aGraphList.push_back( pE );
+ aGraphList.push_back( ScHTMLGraphEntry( pObject,
+ aR, aSize, bInCell, aSpace ) );
}
pObject = aIter.Next();
}