exchange tr() for QString() (#2547)

This commit is contained in:
tooomm 2017-03-27 21:07:17 +02:00 committed by Zach H
parent 06c3edf4c6
commit a273f55b6f

View file

@ -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);