Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Revert "dump unaryminus without space between operand"
This reverts commit 6122a9f.
  • Loading branch information
rduivenvoorde committed Apr 4, 2015
1 parent a2a7a82 commit ff70892
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgsexpression.cpp
Expand Up @@ -2218,7 +2218,7 @@ bool QgsExpression::NodeUnaryOperator::prepare( QgsExpression* parent, const Qgs

QString QgsExpression::NodeUnaryOperator::dump() const
{
return QString( "%1%2" ).arg( UnaryOperatorText[mOp] ).arg( mOperand->dump() );
return QString( "%1 %2" ).arg( UnaryOperatorText[mOp] ).arg( mOperand->dump() );
}

//
Expand Down

0 comments on commit ff70892

Please sign in to comment.