summaryrefslogtreecommitdiff
path: root/include/filter
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2020-07-30 14:24:06 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-07-30 18:26:33 +0200
commit30562669909def344c529e9c899c03248bc11149 (patch)
tree71bee20d9e559752e4c6d25b3b09928a31f3da2d /include/filter
parent8e50f6f4d98e813ce60e7743184911e6cd554f7a (diff)
inline some use-once typedefs
Change-Id: I66400bcfef1d609662f44cc25a4984b68efb4b44 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/99801 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/filter')
-rw-r--r--include/filter/msfilter/escherex.hxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/filter/msfilter/escherex.hxx b/include/filter/msfilter/escherex.hxx
index 9acfb51bd892..f55074ecf856 100644
--- a/include/filter/msfilter/escherex.hxx
+++ b/include/filter/msfilter/escherex.hxx
@@ -1025,7 +1025,6 @@ private:
sal_uInt32 mnNextShapeId; /// Next free shape identifier in this cluster.
explicit ClusterEntry( sal_uInt32 nDrawingId ) : mnDrawingId( nDrawingId ), mnNextShapeId( 0 ) {}
};
- typedef ::std::vector< ClusterEntry > ClusterTable;
struct DrawingInfo
{
@@ -1036,7 +1035,7 @@ private:
};
typedef ::std::vector< DrawingInfo > DrawingInfoVector;
- ClusterTable maClusterTable; /// List with cluster IDs (used object IDs in drawings).
+ std::vector< ClusterEntry > maClusterTable; /// List with cluster IDs (used object IDs in drawings).
DrawingInfoVector maDrawingInfos; /// Data about all used drawings.
SvStream* mpPicStrm; /// Cached result of ImplQueryPictureStream().
bool mbHasDggCont; /// True = the DGGCONTAINER has been initialized.