mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
removed mention of null PGP ids in People
This commit is contained in:
parent
f8639e5486
commit
53dbc526a8
@ -905,9 +905,17 @@ bool IdDialog::fillIdListItem(const RsGxsIdGroup& data, QTreeWidgetItem *&item,
|
||||
{
|
||||
QString txt = tr("[Unknown node]");
|
||||
item->setText(RSID_COL_IDTYPE, txt);
|
||||
|
||||
if(!data.mPgpId.isNull())
|
||||
{
|
||||
item->setToolTip(RSID_COL_IDTYPE,tr("Unverified signature from ")+QString::fromStdString(data.mPgpId.toStdString())) ;
|
||||
|
||||
item->setToolTip(RSID_COL_KEYID,tr("Unverified signature from ")+QString::fromStdString(data.mPgpId.toStdString())) ;
|
||||
}
|
||||
else
|
||||
{
|
||||
item->setToolTip(RSID_COL_IDTYPE,tr("Unverified signature")) ;
|
||||
item->setToolTip(RSID_COL_KEYID,tr("Unverified signature")) ;
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user