Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
QgsExpressionPrivate: add missing variables to copy constructor
Those 3 member variables were added per e9bc483 and are linked to
mCalc, so as we copy the later, better copy them too
  • Loading branch information
rouault authored and nyalldawson committed May 29, 2020
1 parent 2676779 commit c07b5cb
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/core/expression/qgsexpression_p.h
Expand Up @@ -46,6 +46,9 @@ class QgsExpressionPrivate
, mEvalErrorString( other.mEvalErrorString )
, mParserErrors( other.mParserErrors )
, mExp( other.mExp )
, mDaEllipsoid( other.mDaEllipsoid )
, mDaCrs( other.mDaCrs )
, mDaTransformContext( other.mDaTransformContext )
, mCalc( other.mCalc )
, mDistanceUnit( other.mDistanceUnit )
, mAreaUnit( other.mAreaUnit )
Expand Down

0 comments on commit c07b5cb

Please sign in to comment.