summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-03-19 14:28:34 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-03-20 07:46:18 +0100
commit1083e405b6138867ea2d8ff74706237c0a68dc75 (patch)
treedfc442bc22f09a8f0c7631489054949a6baf9773 /filter
parent9bac723400d3007c771f8a780a92d40bdaf4b3c1 (diff)
remove unused maShapesVector
Change-Id: I6ce10a74ed9c665ff20d6408fe2f6b31faf46bcc Reviewed-on: https://gerrit.libreoffice.org/51552 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'filter')
-rw-r--r--filter/source/flash/swfexporter.cxx4
-rw-r--r--filter/source/flash/swfexporter.hxx4
2 files changed, 0 insertions, 8 deletions
diff --git a/filter/source/flash/swfexporter.cxx b/filter/source/flash/swfexporter.cxx
index 641f4d72ca8d..2b9d8acd675b 100644
--- a/filter/source/flash/swfexporter.cxx
+++ b/filter/source/flash/swfexporter.cxx
@@ -61,10 +61,6 @@ PageInfo::PageInfo()
PageInfo::~PageInfo()
{
- for (auto const& shape : maShapesVector)
- {
- delete shape;
- }
}
diff --git a/filter/source/flash/swfexporter.hxx b/filter/source/flash/swfexporter.hxx
index b8ca54cdbfcd..8e72bd6ef33c 100644
--- a/filter/source/flash/swfexporter.hxx
+++ b/filter/source/flash/swfexporter.hxx
@@ -60,12 +60,8 @@ struct PageInfo
sal_uInt16 mnObjectsID;
sal_uInt16 mnForegroundID;
- ::std::vector<ShapeInfo*>
- maShapesVector;
-
PageInfo();
~PageInfo();
-
};