File tree 3 files changed +4
-4
lines changed
python/core/auto_generated
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ Returns the CRS used for tracing.
48
48
.. seealso:: :py:func:`setDestinationCrs`
49
49
%End
50
50
51
- void setDestinationCrs( const QgsCoordinateReferenceSystem &crs, const QgsCoordinateTransformContext &transformContext );
51
+ void setDestinationCrs( const QgsCoordinateReferenceSystem &crs, const QgsCoordinateTransformContext &context );
52
52
%Docstring
53
53
Sets the ``crs`` and ``transformContext`` used for tracing.
54
54
Original file line number Diff line number Diff line change @@ -623,10 +623,10 @@ void QgsTracer::setLayers( const QList<QgsVectorLayer *> &layers )
623
623
invalidateGraph ();
624
624
}
625
625
626
- void QgsTracer::setDestinationCrs ( const QgsCoordinateReferenceSystem &crs, const QgsCoordinateTransformContext &transformContext )
626
+ void QgsTracer::setDestinationCrs ( const QgsCoordinateReferenceSystem &crs, const QgsCoordinateTransformContext &context )
627
627
{
628
628
mCRS = crs;
629
- mTransformContext = transformContext ;
629
+ mTransformContext = context ;
630
630
invalidateGraph ();
631
631
}
632
632
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ class CORE_EXPORT QgsTracer : public QObject
66
66
* Sets the \a crs and \a transformContext used for tracing.
67
67
* \see destinationCrs()
68
68
*/
69
- void setDestinationCrs ( const QgsCoordinateReferenceSystem &crs, const QgsCoordinateTransformContext &transformContext );
69
+ void setDestinationCrs ( const QgsCoordinateReferenceSystem &crs, const QgsCoordinateTransformContext &context );
70
70
71
71
/* *
72
72
* Sets the \a renderContext used for tracing only on visible features.
You can’t perform that action at this time.
0 commit comments