Skip to content

Commit

Permalink
Fix OR operator toString representation
Browse files Browse the repository at this point in the history
  • Loading branch information
elpaso committed Nov 28, 2018
1 parent 4140960 commit c3b3f7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/analysis/raster/qgsrastercalcnode.cpp
Expand Up @@ -264,7 +264,7 @@ QString QgsRasterCalcNode::toString( bool cStyle ) const
if ( cStyle )
result = QStringLiteral( "%1 || %2" ).arg( left ).arg( right );
else
result = QStringLiteral( "%1 OR%2" ).arg( left ).arg( right );
result = QStringLiteral( "%1 OR %2" ).arg( left ).arg( right );
break;
case opSQRT:
result = QStringLiteral( "sqrt( %1 )" ).arg( left );
Expand Down

0 comments on commit c3b3f7e

Please sign in to comment.