We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a023f55 commit 0367d7aCopy full SHA for 0367d7a
src/providers/wfs/qgswfsprovider.cpp
@@ -706,7 +706,7 @@ QgsRectangle QgsWFSProvider::extent()
706
return computedExtent;
707
}
708
709
- computedExtent.combineExtentWith( &mShared->mCapabilityExtent );
+ computedExtent.combineExtentWith( mShared->mCapabilityExtent );
710
711
712
src/providers/wfs/qgswfsshareddata.cpp
@@ -884,7 +884,7 @@ void QgsWFSSharedData::serializeFeatures( QVector<QgsWFSFeatureGmlIdPair>& featu
884
if ( localComputedExtent.isNull() )
885
localComputedExtent = bBox;
886
else
887
- localComputedExtent.combineExtentWith( &bBox );
+ localComputedExtent.combineExtentWith( bBox );
888
QgsGeometry* polyBoundingBox = QgsGeometry::fromRect( bBox );
889
cachedFeature.setGeometry( polyBoundingBox );
890
0 commit comments