Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix incremental wfs loading
  • Loading branch information
mhugent committed Jan 21, 2013
1 parent 3e419b9 commit c5ed2cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/wfs/qgswfsprovider.cpp
Expand Up @@ -275,7 +275,7 @@ bool QgsWFSProvider::isValid()

QgsFeatureIterator QgsWFSProvider::getFeatures( const QgsFeatureRequest& request )
{
if ( ! request.flags() & QgsFeatureRequest::NoGeometry )
if ( !( request.flags() & QgsFeatureRequest::NoGeometry ) )
{
QgsRectangle rect = request.filterRect();
if ( !rect.isEmpty() )
Expand Down

0 comments on commit c5ed2cf

Please sign in to comment.