mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
Merge pull request #8271 from lioncash/qstring
DolphinQt: Replace unnecessary QStringLiterals with alternatives where applicable
This commit is contained in:
@ -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
|
||||
{
|
||||
|
Reference in New Issue
Block a user