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:
thunder2 2015-02-10 12:55:16 +00:00
parent 05d25a83d5
commit 0a1698f8c8
6 changed files with 63 additions and 40 deletions

View file

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