Skip to content

Commit

Permalink
ouch - fix bc825b4
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Dec 3, 2013
1 parent bc825b4 commit f533d53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgsexpression.cpp
Expand Up @@ -756,7 +756,7 @@ static QVariant fcnRPad( const QVariantList& values, const QgsFeature* , QgsExpr
QString string = getStringValue( values.at( 0 ), parent );
int length = getIntValue( values.at( 1 ), parent );
QString fill = getStringValue( values.at( 2 ), parent );
return string.leftJustified( length, fill.at( 0 ), true ); }
return string.leftJustified( length, fill.at( 0 ), true );
}

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

0 comments on commit f533d53

Please sign in to comment.