mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-25 23:49:35 -05:00
fixed compilation after removing operators!= (patch from phenom)
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7655 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
1078126a38
commit
5d13dee029
@ -55,8 +55,6 @@ public:
|
||||
}
|
||||
|
||||
void operator =(const RsGxsGrpMetaData& rGxsMeta);
|
||||
bool operator ==(const RsGroupMetaData& rGxsMeta);
|
||||
bool operator !=(const RsGroupMetaData& rGxsMeta);
|
||||
|
||||
RsGxsGroupId mGroupId;
|
||||
std::string mGroupName;
|
||||
|
@ -41,7 +41,7 @@ CircleWidget::~CircleWidget()
|
||||
void CircleWidget::updateData(const RsGroupMetaData& gxs_group_info
|
||||
, const RsGxsCircleDetails& details)
|
||||
{
|
||||
if (_group_info != gxs_group_info) {
|
||||
//if (_group_info != gxs_group_info) {
|
||||
_group_info=gxs_group_info;
|
||||
std::string desc_string = _group_info.mGroupName ;
|
||||
QString cirName = QString::fromUtf8(desc_string.c_str());
|
||||
@ -49,7 +49,7 @@ void CircleWidget::updateData(const RsGroupMetaData& gxs_group_info
|
||||
ui->label->setText(m_myName);
|
||||
ui->label->setToolTip(m_myName);
|
||||
update();
|
||||
}//if (_group_info != gxs_group_info)
|
||||
//}//if (_group_info != gxs_group_info)
|
||||
|
||||
if (_circle_details != details) {
|
||||
_circle_details=details;
|
||||
|
Loading…
Reference in New Issue
Block a user