Skip to content

Commit b2d9ebb

Browse files
committed
Feature #8725: fix merge changes
1 parent 0324de4 commit b2d9ebb

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/core/qgsfeaturerequest.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,9 @@ QgsFeatureRequest::QgsFeatureRequest( const QgsExpression& expr )
5656
: mFilter( FilterExpression )
5757
, mFilterExpression( new QgsExpression( expr.expression() ) )
5858
, mFlags( 0 )
59+
, mMapCoordTransform( NULL )
60+
, mMapToPixel( NULL )
61+
, mMapToPixelTol( QgsFeatureRequest::MAPTOPIXEL_THRESHOLD_DEFAULT )
5962
{
6063
}
6164

src/core/symbology-ng/qgsfillsymbollayerv2.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -681,7 +681,7 @@ void QgsGradientFillSymbolLayerV2::renderPolygon( const QPolygonF& points, QList
681681
p->translate( offset );
682682
}
683683

684-
_renderPolygon( p, points, rings );
684+
_renderPolygon( p, points, rings, context );
685685

686686
if ( !mOffset.isNull() )
687687
{

0 commit comments

Comments
 (0)