Skip to content

Commit

Permalink
small bugfix in wfs provider
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@7116 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
mhugent committed Jul 30, 2007
1 parent e1d7d4e commit f2b44e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/wfs/qgswfsprovider.cpp
Expand Up @@ -751,9 +751,9 @@ int QgsWFSProvider::getFeaturesFromGML2(const QDomElement& wfsCollectionElement,
layerNameElem = currentFeatureMemberElem.firstChild().toElement();
//the children are the attributes
currentAttributeChild = layerNameElem.firstChild();
int attr = 0;
while(!currentAttributeChild.isNull())
{
int attr = 0;
currentAttributeElement = currentAttributeChild.toElement();
if(currentAttributeElement.localName() != "boundedBy")
{
Expand Down

0 comments on commit f2b44e2

Please sign in to comment.