Skip to content

Commit c5ed2cf

Browse files
committedJan 21, 2013
Fix incremental wfs loading
1 parent 3e419b9 commit c5ed2cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/providers/wfs/qgswfsprovider.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ bool QgsWFSProvider::isValid()
275275

276276
QgsFeatureIterator QgsWFSProvider::getFeatures( const QgsFeatureRequest& request )
277277
{
278-
if ( ! request.flags() & QgsFeatureRequest::NoGeometry )
278+
if ( !( request.flags() & QgsFeatureRequest::NoGeometry ) )
279279
{
280280
QgsRectangle rect = request.filterRect();
281281
if ( !rect.isEmpty() )

0 commit comments

Comments
 (0)
Please sign in to comment.