Skip to content

Commit 0367d7a

Browse files
committed
[WFS provider] Fix build problem due to signature change of QgsRectangle::combineExtentWith()
1 parent a023f55 commit 0367d7a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/providers/wfs/qgswfsprovider.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -706,7 +706,7 @@ QgsRectangle QgsWFSProvider::extent()
706706
return computedExtent;
707707
}
708708

709-
computedExtent.combineExtentWith( &mShared->mCapabilityExtent );
709+
computedExtent.combineExtentWith( mShared->mCapabilityExtent );
710710
return computedExtent;
711711
}
712712

src/providers/wfs/qgswfsshareddata.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -884,7 +884,7 @@ void QgsWFSSharedData::serializeFeatures( QVector<QgsWFSFeatureGmlIdPair>& featu
884884
if ( localComputedExtent.isNull() )
885885
localComputedExtent = bBox;
886886
else
887-
localComputedExtent.combineExtentWith( &bBox );
887+
localComputedExtent.combineExtentWith( bBox );
888888
QgsGeometry* polyBoundingBox = QgsGeometry::fromRect( bBox );
889889
cachedFeature.setGeometry( polyBoundingBox );
890890
}

0 commit comments

Comments
 (0)