Navigation Menu

Skip to content

Commit

Permalink
fix QGis::featureType output
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Jan 23, 2014
1 parent 94027df commit 68011dd
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/core/qgis.h
Expand Up @@ -92,7 +92,7 @@ class CORE_EXPORT QGis
case WKBPoint25D: return WKBMultiPoint25D;
case WKBLineString25D: return WKBMultiLineString25D;
case WKBPolygon25D: return WKBMultiPolygon25D;
default: return type;
default: return type;
}
}

Expand Down Expand Up @@ -184,7 +184,8 @@ class CORE_EXPORT QGis
case WKBPoint: return "WKBPoint";
case WKBLineString: return "WKBLineString";
case WKBPolygon: return "WKBPolygon";
case WKBMultiPoint: return "WKBMultiLineString";
case WKBMultiPoint: return "WKBMultiPoint";
case WKBMultiLineString: return "WKBMultiLineString";
case WKBMultiPolygon: return "WKBMultiPolygon";
case WKBNoGeometry: return "WKBNoGeometry";
case WKBPoint25D: return "WKBPoint25D";
Expand Down

0 comments on commit 68011dd

Please sign in to comment.