We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 305272c commit b81ca7dCopy full SHA for b81ca7d
src/gui/qgsrubberband.cpp
@@ -438,7 +438,7 @@ QgsGeometry *QgsRubberBand::asGeometry()
438
if ( mIsPolygon )
439
{
440
QgsPolygon polygon;
441
- QList<QList<QgsPoint>>::const_iterator it = mPoints.constBegin();
+ QList< QList<QgsPoint> >::const_iterator it = mPoints.constBegin();
442
for ( ; it != mPoints.constEnd(); ++it )
443
444
polygon.append( getPolyline( *it ) );
@@ -452,7 +452,7 @@ QgsGeometry *QgsRubberBand::asGeometry()
452
if ( mPoints.size() > 1 )
453
454
QgsMultiPolyline multiPolyline;
455
456
457
458
multiPolyline.append( getPolyline( *it ) );
0 commit comments