mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-27 00:33:48 -05:00
[WFS provider] Fix build problem due to signature change of QgsRectangle::combineExtentWith()
This commit is contained in:
parent
a023f55b9d
commit
0367d7a342
@ -706,7 +706,7 @@ QgsRectangle QgsWFSProvider::extent()
|
||||
return computedExtent;
|
||||
}
|
||||
|
||||
computedExtent.combineExtentWith( &mShared->mCapabilityExtent );
|
||||
computedExtent.combineExtentWith( mShared->mCapabilityExtent );
|
||||
return computedExtent;
|
||||
}
|
||||
|
||||
|
@ -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 );
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user