Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix remaining errors
  • Loading branch information
m-kuhn committed Apr 30, 2017
1 parent d230cf2 commit a8fc2c1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/core/qgsexpression.sip
Expand Up @@ -1134,7 +1134,7 @@ The name of the column.
:rtype: str
%End

virtual NodeType nodeType() const;
virtual QgsExpression::NodeType nodeType() const;
virtual bool prepare( QgsExpression *parent, const QgsExpressionContext *context );
virtual QVariant eval( QgsExpression *parent, const QgsExpressionContext *context );
virtual QString dump() const;
Expand Down
2 changes: 1 addition & 1 deletion src/core/qgsexpression.h
Expand Up @@ -1180,7 +1180,7 @@ class CORE_EXPORT QgsExpression
//! The name of the column.
QString name() const { return mName; }

virtual NodeType nodeType() const override { return ntColumnRef; }
virtual QgsExpression::NodeType nodeType() const override { return ntColumnRef; }
virtual bool prepare( QgsExpression *parent, const QgsExpressionContext *context ) override;
virtual QVariant eval( QgsExpression *parent, const QgsExpressionContext *context ) override;
virtual QString dump() const override;
Expand Down

0 comments on commit a8fc2c1

Please sign in to comment.