Skip to content

Commit f7a1dcd

Browse files
committed
fix warning fix (followup d4a0e35)
1 parent d4a0e35 commit f7a1dcd

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/core/dxf/qgsdxfexport.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -3891,15 +3891,17 @@ void QgsDxfExport::addFeature( QgsSymbolV2RenderContext& ctx, const QString& lay
38913891
break;
38923892

38933893
case QgsWKBTypes::MultiPolygon:
3894+
{
38943895
const QgsCoordinateSequenceV2 &cs = geom->coordinateSequence();
38953896
for ( int i = 0; i < cs.size(); i++ )
38963897
{
38973898
writePolygon( cs.at( i ), layer, "SOLID", brushColor );
38983899
}
3900+
break;
3901+
}
38993902

39003903
default:
39013904
break;
3902-
39033905
}
39043906

39053907
if ( tempGeom != geom )

0 commit comments

Comments
 (0)