mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-08-12 16:15:43 -04:00
Used RsGxsGroupId instead of std:string for id/name in IdEditDialog/GxsidChooser.
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7936 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
05d25a83d5
commit
0a1698f8c8
6 changed files with 63 additions and 40 deletions
|
@ -843,7 +843,10 @@ void IdDialog::editIdentity()
|
|||
return;
|
||||
}
|
||||
|
||||
std::string keyId = item->text(RSID_COL_KEYID).toStdString();
|
||||
RsGxsGroupId keyId = RsGxsGroupId(item->text(RSID_COL_KEYID).toStdString());
|
||||
if (keyId.isNull()) {
|
||||
return;
|
||||
}
|
||||
|
||||
IdEditDialog dlg(this);
|
||||
dlg.setupExistingId(keyId);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue