Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed a bug relating the attribute definitions in WFS provider
git-svn-id: http://svn.osgeo.org/qgis/trunk@6675 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
mhugent committed Feb 22, 2007
1 parent 283a713 commit 772f5d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/wfs/qgswfsprovider.cpp
Expand Up @@ -573,7 +573,7 @@ int QgsWFSProvider::readAttributesFromSchema(QDomDocument& schemaDoc, QString& g
}
else //todo: distinguish between numerical and non-numerical types
{
fields[i] = QgsField(name, type);
fields[fields.size()] = QgsField(name, type);
}
}
return 0;
Expand Down

0 comments on commit 772f5d0

Please sign in to comment.