Skip to content

Commit a8fc2c1

Browse files
committed
Fix remaining errors
1 parent d230cf2 commit a8fc2c1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

python/core/qgsexpression.sip

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1134,7 +1134,7 @@ The name of the column.
11341134
:rtype: str
11351135
%End
11361136

1137-
virtual NodeType nodeType() const;
1137+
virtual QgsExpression::NodeType nodeType() const;
11381138
virtual bool prepare( QgsExpression *parent, const QgsExpressionContext *context );
11391139
virtual QVariant eval( QgsExpression *parent, const QgsExpressionContext *context );
11401140
virtual QString dump() const;

src/core/qgsexpression.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1180,7 +1180,7 @@ class CORE_EXPORT QgsExpression
11801180
//! The name of the column.
11811181
QString name() const { return mName; }
11821182

1183-
virtual NodeType nodeType() const override { return ntColumnRef; }
1183+
virtual QgsExpression::NodeType nodeType() const override { return ntColumnRef; }
11841184
virtual bool prepare( QgsExpression *parent, const QgsExpressionContext *context ) override;
11851185
virtual QVariant eval( QgsExpression *parent, const QgsExpressionContext *context ) override;
11861186
virtual QString dump() const override;

0 commit comments

Comments
 (0)