mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-11-29 20:06:38 -05:00
fixed translation of built-in group names in GxsGroupDialog
This commit is contained in:
parent
c61536e737
commit
77b064b371
2 changed files with 5 additions and 4 deletions
|
|
@ -27,6 +27,7 @@
|
|||
#include <iostream>
|
||||
|
||||
#include <retroshare/rspeers.h>
|
||||
#include <gui/common/GroupDefs.h>
|
||||
|
||||
/** Constructor */
|
||||
GroupChooser::GroupChooser(QWidget *parent)
|
||||
|
|
@ -88,7 +89,7 @@ void GroupChooser::loadGroups()
|
|||
std::cerr << std::endl;
|
||||
continue;
|
||||
}
|
||||
QString id = QString::fromStdString(it->id.toStdString());
|
||||
QString id = GroupDefs::name(*it) ;
|
||||
|
||||
addItem(str, id);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue