diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2020-05-13 23:34:23 +1000 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2020-05-13 18:53:50 +0200 |
commit | d0780b21cfe235c4446adf649eb690f9c1771dd5 (patch) | |
tree | 11eaed214601c7e050a35d4dc204b13228489d1b | |
parent | 18790e6f12d34965292828c17e76b9a200aed2e0 (diff) |
vcl: remove unnecessary ConnectedComponentList typedef (not a list anyway!)
Change-Id: If855e28ba8a6d86f069e66809f5607484e826e98
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/94131
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
-rw-r--r-- | vcl/source/gdi/print2.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/vcl/source/gdi/print2.cxx b/vcl/source/gdi/print2.cxx index b51318c8ea83..927e40131f21 100644 --- a/vcl/source/gdi/print2.cxx +++ b/vcl/source/gdi/print2.cxx @@ -61,8 +61,6 @@ struct ConnectedComponents } -typedef ::std::vector< ConnectedComponents > ConnectedComponentsList; - namespace { /** \#i10613# Extracted from Printer::GetPreparedMetaFile. Returns true @@ -838,7 +836,7 @@ bool OutputDevice::RemoveTransparenciesFromMetaFile( const GDIMetaFile& rInMtf, while( nCount-- ) aMapModeVDev->Pop(); - ConnectedComponentsList aCCList; // list containing distinct sets of connected components as elements. + ::std::vector<ConnectedComponents> aCCList; // contains distinct sets of connected components as elements. // fast-forward until one after the last background action // (need to reconstruct map mode vdev state) |