* fixed up the display of PGP linked name etc.

* made createIdentity work (plumbing)
 * disabled editId until GXS supports it.



git-svn-id: http://svn.code.sf.net/p/retroshare/code/branches/v0.5-gxs-b1@5790 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
drbob 2012-11-07 21:40:07 +00:00
parent 0327b47ccc
commit 1b865612c5
2 changed files with 21 additions and 4 deletions

View file

@ -228,7 +228,8 @@ void IdDialog::insertIdDetails(uint32_t token)
{
ui.pushButton_Reputation->setEnabled(false);
ui.pushButton_Delete->setEnabled(true);
ui.pushButton_EditId->setEnabled(true);
// No Editing Ids yet!
//ui.pushButton_EditId->setEnabled(true);
}
else
{
@ -393,7 +394,16 @@ void IdDialog::insertIdList(uint32_t token)
item->setText(RSID_COL_KEYID, QString::fromStdString(data.mMeta.mGroupId));
if (data.mMeta.mGroupFlags & RSGXSID_GROUPFLAG_REALID)
{
item->setText(RSID_COL_IDTYPE, "PGP Linked Id");
if (data.mPgpKnown)
{
RsPeerDetails details;
rsPeers->getGPGDetails(data.mPgpId, details);
item->setText(RSID_COL_IDTYPE, QString::fromStdString(details.name));
}
else
{
item->setText(RSID_COL_IDTYPE, "PGP Linked Id");
}
}
else
{