File tree Expand file tree Collapse file tree 3 files changed +12
-12
lines changed
python/core/auto_generated Expand file tree Collapse file tree 3 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -48,16 +48,16 @@ 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 &transform );
51
+ void setDestinationCrs( const QgsCoordinateReferenceSystem &crs, const QgsCoordinateTransformContext &transformContext );
52
52
%Docstring
53
- Sets the ``crs`` and transform ``context `` used for tracing.
53
+ Sets the ``crs`` and ``transformContext `` used for tracing.
54
54
55
55
.. seealso:: :py:func:`destinationCrs`
56
56
%End
57
57
58
- void setRenderContext( const QgsRenderContext *render );
58
+ void setRenderContext( const QgsRenderContext *renderContext );
59
59
%Docstring
60
- Sets the ``render`` context used for tracing only on visible features.
60
+ Sets the ``renderContext`` used for tracing only on visible features.
61
61
%End
62
62
63
63
QgsRectangle extent() const;
Original file line number Diff line number Diff line change @@ -620,16 +620,16 @@ void QgsTracer::setLayers( const QList<QgsVectorLayer *> &layers )
620
620
invalidateGraph ();
621
621
}
622
622
623
- void QgsTracer::setDestinationCrs ( const QgsCoordinateReferenceSystem &crs, const QgsCoordinateTransformContext &transform )
623
+ void QgsTracer::setDestinationCrs ( const QgsCoordinateReferenceSystem &crs, const QgsCoordinateTransformContext &transformContext )
624
624
{
625
625
mCRS = crs;
626
- mTransformContext = transform ;
626
+ mTransformContext = transformContext ;
627
627
invalidateGraph ();
628
628
}
629
629
630
- void QgsTracer::setRenderContext ( const QgsRenderContext *render )
630
+ void QgsTracer::setRenderContext ( const QgsRenderContext *renderContext )
631
631
{
632
- mRenderContext = std::unique_ptr<QgsRenderContext>( new QgsRenderContext ( *render ) );
632
+ mRenderContext = std::unique_ptr<QgsRenderContext>( new QgsRenderContext ( *renderContext ) );
633
633
invalidateGraph ();
634
634
}
635
635
Original file line number Diff line number Diff line change @@ -63,15 +63,15 @@ class CORE_EXPORT QgsTracer : public QObject
63
63
QgsCoordinateReferenceSystem destinationCrs () const { return mCRS ; }
64
64
65
65
/* *
66
- * Sets the \a crs and transform \a context used for tracing.
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 &transform );
69
+ void setDestinationCrs ( const QgsCoordinateReferenceSystem &crs, const QgsCoordinateTransformContext &transformContext );
70
70
71
71
/* *
72
- * Sets the \a render context used for tracing only on visible features.
72
+ * Sets the \a renderContext used for tracing only on visible features.
73
73
*/
74
- void setRenderContext ( const QgsRenderContext *render );
74
+ void setRenderContext ( const QgsRenderContext *renderContext );
75
75
76
76
// ! Gets extent to which graph's features will be limited (empty extent means no limit)
77
77
QgsRectangle extent () const { return mExtent ; }
You can’t perform that action at this time.
0 commit comments