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
765765 fCount [wkbUnknown] = 0 ;
766766 }
767767
768- // List TIN and PolyhedralSurface as MultiPolygon
768+ // List TIN and PolyhedralSurface as Polygon
769769 if ( fCount .contains ( wkbTIN ) )
770770 {
771- fCount [wkbMultiPolygon ] = fCount .value ( wkbMultiPolygon ) + fCount [wkbTIN];
771+ fCount [wkbPolygon ] = fCount .value ( wkbPolygon ) + fCount [wkbTIN];
772772 fCount .remove ( wkbTIN );
773773 }
774774 if ( fCount .contains ( wkbPolyhedralSurface ) )
775775 {
776- fCount [wkbMultiPolygon ] = fCount .value ( wkbMultiPolygon ) + fCount [wkbPolyhedralSurface];
776+ fCount [wkbPolygon ] = fCount .value ( wkbPolygon ) + fCount [wkbPolyhedralSurface];
777777 fCount .remove ( wkbPolyhedralSurface );
778778 }
779779 // When there are CurvePolygons, promote Polygons
You can’t perform that action at this time.
0 commit comments