From d0780b21cfe235c4446adf649eb690f9c1771dd5 Mon Sep 17 00:00:00 2001 From: Chris Sherlock Date: Wed, 13 May 2020 23:34:23 +1000 Subject: [PATCH] vcl: remove unnecessary ConnectedComponentList typedef (not a list anyway!) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: If855e28ba8a6d86f069e66809f5607484e826e98 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/94131 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl --- vcl/source/gdi/print2.cxx | 4 +--- 1 file changed, 1 insertion(+), 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 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)