Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
dump unaryminus without space between operand
  • Loading branch information
rduivenvoorde committed Apr 3, 2015
1 parent 9757224 commit 6122a9f
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 6122a9f

Please sign in to comment.