File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -765,15 +765,15 @@ QStringList QgsOgrProvider::subLayers() const
765
765
fCount [wkbUnknown] = 0 ;
766
766
}
767
767
768
- // List TIN and PolyhedralSurface as MultiPolygon
768
+ // List TIN and PolyhedralSurface as Polygon
769
769
if ( fCount .contains ( wkbTIN ) )
770
770
{
771
- fCount [wkbMultiPolygon ] = fCount .value ( wkbMultiPolygon ) + fCount [wkbTIN];
771
+ fCount [wkbPolygon ] = fCount .value ( wkbPolygon ) + fCount [wkbTIN];
772
772
fCount .remove ( wkbTIN );
773
773
}
774
774
if ( fCount .contains ( wkbPolyhedralSurface ) )
775
775
{
776
- fCount [wkbMultiPolygon ] = fCount .value ( wkbMultiPolygon ) + fCount [wkbPolyhedralSurface];
776
+ fCount [wkbPolygon ] = fCount .value ( wkbPolygon ) + fCount [wkbPolyhedralSurface];
777
777
fCount .remove ( wkbPolyhedralSurface );
778
778
}
779
779
// When there are CurvePolygons, promote Polygons
You can’t perform that action at this time.
0 commit comments