Skip to content

Commit b81ca7d

Browse files
author
jef
committed
fix linux build
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@14072 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 305272c commit b81ca7d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/gui/qgsrubberband.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ QgsGeometry *QgsRubberBand::asGeometry()
438438
if ( mIsPolygon )
439439
{
440440
QgsPolygon polygon;
441-
QList<QList<QgsPoint>>::const_iterator it = mPoints.constBegin();
441+
QList< QList<QgsPoint> >::const_iterator it = mPoints.constBegin();
442442
for ( ; it != mPoints.constEnd(); ++it )
443443
{
444444
polygon.append( getPolyline( *it ) );
@@ -452,7 +452,7 @@ QgsGeometry *QgsRubberBand::asGeometry()
452452
if ( mPoints.size() > 1 )
453453
{
454454
QgsMultiPolyline multiPolyline;
455-
QList<QList<QgsPoint>>::const_iterator it = mPoints.constBegin();
455+
QList< QList<QgsPoint> >::const_iterator it = mPoints.constBegin();
456456
for ( ; it != mPoints.constEnd(); ++it )
457457
{
458458
multiPolyline.append( getPolyline( *it ) );

0 commit comments

Comments
 (0)