File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -438,7 +438,7 @@ QgsGeometry *QgsRubberBand::asGeometry()
438
438
if ( mIsPolygon )
439
439
{
440
440
QgsPolygon polygon;
441
- QList<QList<QgsPoint>>::const_iterator it = mPoints .constBegin ();
441
+ QList< QList<QgsPoint> >::const_iterator it = mPoints .constBegin ();
442
442
for ( ; it != mPoints .constEnd (); ++it )
443
443
{
444
444
polygon.append ( getPolyline ( *it ) );
@@ -452,7 +452,7 @@ QgsGeometry *QgsRubberBand::asGeometry()
452
452
if ( mPoints .size () > 1 )
453
453
{
454
454
QgsMultiPolyline multiPolyline;
455
- QList<QList<QgsPoint>>::const_iterator it = mPoints .constBegin ();
455
+ QList< QList<QgsPoint> >::const_iterator it = mPoints .constBegin ();
456
456
for ( ; it != mPoints .constEnd (); ++it )
457
457
{
458
458
multiPolyline.append ( getPolyline ( *it ) );
You can’t perform that action at this time.
0 commit comments