[Libreoffice-commits] core.git: vcl/source
Chris Sherlock (via logerrit)
logerrit at kemper.freedesktop.org
Wed May 13 16:54:32 UTC 2020
vcl/source/gdi/print2.cxx | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
New commits:
commit d0780b21cfe235c4446adf649eb690f9c1771dd5
Author: Chris Sherlock <chris.sherlock79 at gmail.com>
AuthorDate: Wed May 13 23:34:23 2020 +1000
Commit: Tomaž Vajngerl <quikee at gmail.com>
CommitDate: Wed May 13 18:53:50 2020 +0200
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 at gmail.com>
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)
More information about the Libreoffice-commits
mailing list