Skip to content

Commit 68011dd

Browse files
committed
fix QGis::featureType output
1 parent 94027df commit 68011dd

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/core/qgis.h

+3-2
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ class CORE_EXPORT QGis
9292
case WKBPoint25D: return WKBMultiPoint25D;
9393
case WKBLineString25D: return WKBMultiLineString25D;
9494
case WKBPolygon25D: return WKBMultiPolygon25D;
95-
default: return type;
95+
default: return type;
9696
}
9797
}
9898

@@ -184,7 +184,8 @@ class CORE_EXPORT QGis
184184
case WKBPoint: return "WKBPoint";
185185
case WKBLineString: return "WKBLineString";
186186
case WKBPolygon: return "WKBPolygon";
187-
case WKBMultiPoint: return "WKBMultiLineString";
187+
case WKBMultiPoint: return "WKBMultiPoint";
188+
case WKBMultiLineString: return "WKBMultiLineString";
188189
case WKBMultiPolygon: return "WKBMultiPolygon";
189190
case WKBNoGeometry: return "WKBNoGeometry";
190191
case WKBPoint25D: return "WKBPoint25D";

0 commit comments

Comments
 (0)