Merge pull request #8271 from lioncash/qstring

DolphinQt: Replace unnecessary QStringLiterals with alternatives where applicable
This commit is contained in:
Connor McLaughlin 2019-08-08 12:25:30 +10:00 committed by GitHub
commit 1bd8f03362
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
31 changed files with 70 additions and 73 deletions

View file

@ -179,7 +179,7 @@ void GameConfigEdit::SetOption(const QString& section, const QString& key, const
if (value_cursor.isNull())
{
section_cursor.clearSelection();
section_cursor.insertText(QStringLiteral("\n") + new_line);
section_cursor.insertText(QLatin1Char{'\n'} + new_line);
}
else
{