mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
Fix WFS loading with geoserver layers
This commit is contained in:
parent
ace41834fa
commit
0e9717ba4b
@ -188,9 +188,7 @@ void QgsGml::startElement( const XML_Char* el, const XML_Char** attr )
|
||||
mParseModeStack.push( QgsGml::boundingBox );
|
||||
}
|
||||
else if ( elementName == GML_NAMESPACE + NS_SEPARATOR + "featureMember" )
|
||||
{
|
||||
}
|
||||
else if ( localName == mTypeName )
|
||||
//else if ( localName == mTypeName )
|
||||
{
|
||||
mCurrentFeature = new QgsFeature( mFeatureCount );
|
||||
QgsAttributes attributes( mThematicAttributes.size() ); //add empty attributes
|
||||
@ -308,8 +306,8 @@ void QgsGml::endElement( const XML_Char* el )
|
||||
mParseModeStack.pop();
|
||||
}
|
||||
}
|
||||
//else if ( elementName == GML_NAMESPACE + NS_SEPARATOR + "featureMember" )
|
||||
else if ( localName == mTypeName )
|
||||
//else if ( localName == mTypeName )
|
||||
else if ( elementName == GML_NAMESPACE + NS_SEPARATOR + "featureMember" )
|
||||
{
|
||||
if ( mCurrentWKBSize > 0 )
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user