Skip to content

Commit af8fb04

Browse files
committedMay 20, 2017
replace QStringLiteral with QString (followup c849bc8)
1 parent 0be274f commit af8fb04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/app/qgisapp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9315,7 +9315,7 @@ QgsVectorLayer* QgisApp::addVectorLayer( const QString& vectorLayerPath, const Q
93159315
Q_ASSERT( elements.size() >= 4 );
93169316
if ( layer->name() != elements.at( 1 ) )
93179317
{
9318-
layer->setName( QStringLiteral( "%1 %2 %3" ).arg( layer->name(), elements.at( 1 ), elements.at( 3 ) ) );
9318+
layer->setName( QString( "%1 %2 %3" ).arg( layer->name(), elements.at( 1 ), elements.at( 3 ) ) );
93199319
}
93209320

93219321
myList << layer;

0 commit comments

Comments
 (0)
Please sign in to comment.