Use QStringLiteral rather than QString in first run dialog

This commit is contained in:
Tim Sutton 2020-11-23 14:38:14 +00:00 committed by Nyall Dawson
parent c33e8bab95
commit 9eea64675f

View File

@ -36,7 +36,7 @@ QgsFirstRunDialog::QgsFirstRunDialog( QWidget *parent ) : QDialog( parent )
else
{
// Production version shows link.
mWelcomeProdLabel->setText( mWelcomeProdLabel->text().replace( QString( "VERSION_TOKEN" ), major.append( minor ) ) );
mWelcomeProdLabel->setText( mWelcomeProdLabel->text().replace( QStringLiteral( "VERSION_TOKEN" ), major.append( minor ) ) );
mWelcomeDevLabel->hide();
}