Skip to content

Commit f533d53

Browse files
committed
ouch - fix bc825b4
1 parent bc825b4 commit f533d53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/qgsexpression.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -756,7 +756,7 @@ static QVariant fcnRPad( const QVariantList& values, const QgsFeature* , QgsExpr
756756
QString string = getStringValue( values.at( 0 ), parent );
757757
int length = getIntValue( values.at( 1 ), parent );
758758
QString fill = getStringValue( values.at( 2 ), parent );
759-
return string.leftJustified( length, fill.at( 0 ), true ); }
759+
return string.leftJustified( length, fill.at( 0 ), true );
760760
}
761761

762762
static QVariant fcnLPad( const QVariantList& values, const QgsFeature* , QgsExpression *parent )

0 commit comments

Comments
 (0)