Skip to content

Commit

Permalink
expressions: put black in front of ELSE (fixes #9666)
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Feb 26, 2014
1 parent 82862a6 commit 1d84978
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgsexpression.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2343,7 +2343,7 @@ QString QgsExpression::NodeCondition::dump() const
msg += QString( "WHEN %1 THEN %2" ).arg( cond->mWhenExp->dump() ).arg( cond->mThenExp->dump() );
}
if ( mElseExp )
msg += QString( "ELSE %1" ).arg( mElseExp->dump() );
msg += QString( " ELSE %1" ).arg( mElseExp->dump() );
msg += QString( " END" );
return msg;
}
Expand Down

0 comments on commit 1d84978

Please sign in to comment.