Skip to content

Commit

Permalink
Use QStringLiteral for addUserList
Browse files Browse the repository at this point in the history
  • Loading branch information
pajlada committed Mar 26, 2023
1 parent be48ab0 commit c59f506
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/widgets/splits/Split.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1245,8 +1245,8 @@ void Split::showViewerList()

if (isBroadcaster)
{
addUserList(modChatters, QString("Moderators"));
addUserList(vipChatters, QString("VIPs"));
addUserList(modChatters, QStringLiteral("Moderators"));
addUserList(vipChatters, QStringLiteral("VIPs"));
}
else
{
Expand All @@ -1261,7 +1261,7 @@ void Split::showViewerList()
chattersList->addItem(new QListWidgetItem());
}

addUserList(chatterList, QString("Chatters"));
addUserList(chatterList, QStringLiteral("Chatters"));

loadingLabel->hide();
performListSearch();
Expand Down

0 comments on commit c59f506

Please sign in to comment.