diff --git a/cockatrice/src/userinfobox.cpp b/cockatrice/src/userinfobox.cpp index 68c09eda..384a3f01 100644 --- a/cockatrice/src/userinfobox.cpp +++ b/cockatrice/src/userinfobox.cpp @@ -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);