Skip to content

Commit

Permalink
Use QString::number
Browse files Browse the repository at this point in the history
  • Loading branch information
pblottiere committed Nov 15, 2017
1 parent fba8e84 commit de9bd1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/virtual/qgsvirtuallayerfeatureiterator.cpp
Expand Up @@ -163,7 +163,7 @@ QgsVirtualLayerFeatureIterator::QgsVirtualLayerFeatureIterator( QgsVirtualLayerF
{
if ( request.filterType() == QgsFeatureRequest::FilterFid )
{
columns = QStringLiteral( "%1" ).arg( request.filterFid() );
columns = QString::number( request.filterFid() );
}
else
{
Expand Down

0 comments on commit de9bd1a

Please sign in to comment.