From a273f55b6fe483bef57bbd0ca33f7bc0646f6b0d Mon Sep 17 00:00:00 2001 From: tooomm Date: Mon, 27 Mar 2017 21:07:17 +0200 Subject: [PATCH] exchange tr() for QString() (#2547) --- cockatrice/src/userinfobox.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);