mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-26 07:59:35 -05:00
patch update from Phenom to fix up comparisons
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7626 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
db55ab0bde
commit
491a655889
@ -56,7 +56,7 @@ IdentityWidget::~IdentityWidget()
|
||||
|
||||
void IdentityWidget::updateData(const RsGxsIdGroup &gxs_group_info)
|
||||
{
|
||||
if (_group_info.mMeta.mGroupId != gxs_group_info.mMeta.mGroupId) {
|
||||
//if (_group_info != gxs_group_info) {
|
||||
_group_info = gxs_group_info;
|
||||
_haveGXSId = true;
|
||||
|
||||
@ -94,13 +94,12 @@ void IdentityWidget::updateData(const RsGxsIdGroup &gxs_group_info)
|
||||
}//if (_avatar != image)
|
||||
}//if (!_havePGPDetail)
|
||||
|
||||
}//if (_group_info != gxs_group_info)
|
||||
//}//if (_group_info != gxs_group_info)
|
||||
}
|
||||
|
||||
void IdentityWidget::updateData(const RsPeerDetails &pgp_details)
|
||||
{
|
||||
if (_details.id != pgp_details.id)
|
||||
{
|
||||
//if (_details != pgp_details) {
|
||||
_details = pgp_details;
|
||||
_havePGPDetail = true;
|
||||
|
||||
@ -131,7 +130,7 @@ void IdentityWidget::updateData(const RsPeerDetails &pgp_details)
|
||||
emit imageUpdated();
|
||||
}//if (_avatar != avatar.toImage())
|
||||
|
||||
}//if (_details != gpg_details)
|
||||
//}//if (_details != gpg_details)
|
||||
}
|
||||
|
||||
void IdentityWidget::updateData(const RsGxsIdGroup &gxs_group_info, const RsPeerDetails &pgp_details)
|
||||
|
Loading…
Reference in New Issue
Block a user