fixed translation of built-in group names in GxsGroupDialog

This commit is contained in:
csoler 2017-07-01 17:24:58 +02:00
parent c61536e737
commit 77b064b371
2 changed files with 5 additions and 4 deletions

View file

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