File tree 2 files changed +5
-11
lines changed
2 files changed +5
-11
lines changed Original file line number Diff line number Diff line change @@ -924,15 +924,6 @@ return index of the function in Functions array
924
924
925
925
protected:
926
926
927
- void cloneTo( QgsExpression::Node *target ) const;
928
- %Docstring
929
- Needs to be called by all subclasses as part of their clone() implementation.
930
-
931
- .. note::
932
-
933
- Not available in python bindings
934
- .. versionadded:: 3.0
935
- %End
936
927
937
928
private:
938
929
virtual bool prepareNode( QgsExpression *parent, const QgsExpressionContext *context ) = 0 ;
Original file line number Diff line number Diff line change @@ -1036,12 +1036,15 @@ class CORE_EXPORT QgsExpression
1036
1036
protected:
1037
1037
1038
1038
/* *
1039
+ * Copies the members of this node to the node provided in \a target.
1039
1040
* Needs to be called by all subclasses as part of their clone() implementation.
1040
1041
*
1041
- * \note Not available in python bindings
1042
+ * \note Not available in python bindings, QgsExpression::Node is not
1043
+ * going to be subclassed from python. If that's what you are looking
1044
+ * for, look into writing a custom python expression function.
1042
1045
* \since QGIS 3.0
1043
1046
*/
1044
- void cloneTo ( QgsExpression::Node *target ) const ;
1047
+ void cloneTo ( QgsExpression::Node *target ) const SIP_SKIP ;
1045
1048
1046
1049
private:
1047
1050
You can’t perform that action at this time.
0 commit comments