Skip to content

Commit

Permalink
Fix previous commit (#16675)
Browse files Browse the repository at this point in the history
  • Loading branch information
rouault committed Jun 7, 2017
1 parent 5d7bf0d commit 9397c4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/providers/wfs/qgswfsprovider.cpp
Expand Up @@ -1287,11 +1287,11 @@ bool QgsWFSProvider::readAttributesFromSchema( QDomDocument& schemaDoc,
geometryAttribute = name;
geomType = QGis::WKBMultiPolygon;
}
else if ( type == QLatin1String( "gmgml:LineString_Curve_MultiCurve_CompositeCurvePropertyType" ) )
else if ( type == "gmgml:LineString_Curve_MultiCurve_CompositeCurvePropertyType" )
{
foundGeometryAttribute = true;
geometryAttribute = name;
geomType = QgsWkbTypes::MultiLineString;
geomType = QGis::WKBMultiLineString;
}
//is it a geometry attribute?
//MH 090428: sometimes the <element> tags for geometry attributes have only attribute ref="gml:polygonProperty" and no name
Expand Down

0 comments on commit 9397c4f

Please sign in to comment.