Skip to content

Commit

Permalink
fix warning fix (followup d4a0e35)
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Sep 12, 2016
1 parent d4a0e35 commit f7a1dcd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/core/dxf/qgsdxfexport.cpp
Expand Up @@ -3891,15 +3891,17 @@ void QgsDxfExport::addFeature( QgsSymbolV2RenderContext& ctx, const QString& lay
break;

case QgsWKBTypes::MultiPolygon:
{
const QgsCoordinateSequenceV2 &cs = geom->coordinateSequence();
for ( int i = 0; i < cs.size(); i++ )
{
writePolygon( cs.at( i ), layer, "SOLID", brushColor );
}
break;
}

default:
break;

}

if ( tempGeom != geom )
Expand Down

0 comments on commit f7a1dcd

Please sign in to comment.