Skip to content

Commit

Permalink
[WFS provider] Fix build problem due to signature change of QgsRectan…
Browse files Browse the repository at this point in the history
…gle::combineExtentWith()
  • Loading branch information
rouault committed May 30, 2016
1 parent a023f55 commit 0367d7a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/providers/wfs/qgswfsprovider.cpp
Expand Up @@ -706,7 +706,7 @@ QgsRectangle QgsWFSProvider::extent()
return computedExtent;
}

computedExtent.combineExtentWith( &mShared->mCapabilityExtent );
computedExtent.combineExtentWith( mShared->mCapabilityExtent );
return computedExtent;
}

Expand Down
2 changes: 1 addition & 1 deletion src/providers/wfs/qgswfsshareddata.cpp
Expand Up @@ -884,7 +884,7 @@ void QgsWFSSharedData::serializeFeatures( QVector<QgsWFSFeatureGmlIdPair>& featu
if ( localComputedExtent.isNull() )
localComputedExtent = bBox;
else
localComputedExtent.combineExtentWith( &bBox );
localComputedExtent.combineExtentWith( bBox );
QgsGeometry* polyBoundingBox = QgsGeometry::fromRect( bBox );
cachedFeature.setGeometry( polyBoundingBox );
}
Expand Down

0 comments on commit 0367d7a

Please sign in to comment.