mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-09-07 16:45:45 -05:00
exchange tr() for QString() (#2547)
This commit is contained in:
@@ -112,7 +112,7 @@ void UserInfoBox::updateInfo(const ServerInfo_User &user)
|
||||
userLevelText = tr("Unregistered user");
|
||||
|
||||
if (user.has_privlevel() && user.privlevel() != "NONE") {
|
||||
userLevelText += " | " + tr("%1").arg(user.privlevel().c_str());
|
||||
userLevelText += " | " + QString("%1").arg(user.privlevel().c_str());
|
||||
}
|
||||
|
||||
userLevelLabel3.setText(userLevelText);
|
||||
|
||||
Reference in New Issue
Block a user