Skip to content

Commit 2d2fe8f

Browse files
committed
Fix warning
1 parent 1a6f3e9 commit 2d2fe8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ui/WebWidget.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -867,7 +867,7 @@ QString WebWidget::getFastForwardScript(bool isSelectingTheBestLink)
867867

868868
for (int j = 0; j < keys.count(); ++j)
869869
{
870-
tokensArray.append(QJsonObject({{QLatin1Literal("value"), keys.at(j).toUpper()}, {QLatin1Literal("score"), settings.getValue(keys.at(j)).toInt()}}));
870+
tokensArray.append(QJsonObject({{QLatin1String("value"), keys.at(j).toUpper()}, {QLatin1String("score"), settings.getValue(keys.at(j)).toInt()}}));
871871
}
872872

873873
settings.endGroup();

0 commit comments

Comments
 (0)