Skip to content

Commit ff70892

Browse files
committedApr 4, 2015
Revert "dump unaryminus without space between operand"
This reverts commit 6122a9f.
1 parent a2a7a82 commit ff70892

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/core/qgsexpression.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2218,7 +2218,7 @@ bool QgsExpression::NodeUnaryOperator::prepare( QgsExpression* parent, const Qgs
22182218

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

22242224
//

0 commit comments

Comments
 (0)
Please sign in to comment.