vcl/source/gdi/print2.cxx |    4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

New commits:
commit d0780b21cfe235c4446adf649eb690f9c1771dd5
Author:     Chris Sherlock <chris.sherloc...@gmail.com>
AuthorDate: Wed May 13 23:34:23 2020 +1000
Commit:     Tomaž Vajngerl <qui...@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 <qui...@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)
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to