mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-18 01:22:38 -05:00
Fix building on Windows
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17738 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
2c1ebf5e91
commit
c16a61a84b
1 changed files with 4 additions and 4 deletions
|
|
@ -238,16 +238,16 @@ QString getUserPermissionsString(void)
|
|||
int perm = getUserPermissions();
|
||||
switch(perm) {
|
||||
case GUEST:
|
||||
result = tr("Guest");
|
||||
result = QObject::tr("Guest");
|
||||
break;
|
||||
case ADMIN:
|
||||
result = tr("Admin");
|
||||
result = QObject::tr("Admin");
|
||||
break;
|
||||
case USER:
|
||||
result = tr("User");
|
||||
result = QObject::tr("User");
|
||||
break;
|
||||
default:
|
||||
result = tr("Error");
|
||||
result = QObject::tr("Error");
|
||||
break;
|
||||
}
|
||||
return result;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue