mirror of
https://github.com/RetroShare/RetroShare.git
synced 2026-09-14 11:06:01 +05:00
fix naming
This commit is contained in:
parent
61a1d6a971
commit
f44fe73eb7
@ -2553,7 +2553,7 @@ void IdDialog::copyRetroshareCircleLink()
|
||||
if(!getItemCircleId(item,circle_id))
|
||||
return ;
|
||||
|
||||
RsGxsGroupId item_id(item->data(CIRCLEGROUP_CIRCLE_COL_GROUPID,Qt::UserRole).toString().toStdString());
|
||||
RsGxsCircleId item_id(item->data(CIRCLEGROUP_CIRCLE_COL_GROUPID,Qt::UserRole).toString().toStdString());
|
||||
if(item_id != RsGxsCircleId(circle_id)) return; // not holding a circle item
|
||||
|
||||
RsGxsCircleDetails details;
|
||||
@ -2569,7 +2569,7 @@ void IdDialog::copyRetroshareCircleLink()
|
||||
}
|
||||
}
|
||||
|
||||
void IdDialog::navigateToCircle(const RsGxsGroupId& circleId)
|
||||
void IdDialog::navigateToCircle(const RsGxsCircleId& circleId)
|
||||
{
|
||||
ui->rightTabWidget->setCurrentWidget(ui->circleTab);
|
||||
|
||||
|
||||
@ -55,7 +55,7 @@ public:
|
||||
virtual QString helpText() const override { return ""; } //MainPage
|
||||
|
||||
void navigate(const RsGxsId& gxs_id) ; // shows the info about this particular ID
|
||||
void navigateToCircle(const RsGxsGroupId& circleId) ; // navigates to this circle
|
||||
void navigateToCircle(const RsGxsCircleId& circleId) ; // navigates to this circle
|
||||
protected:
|
||||
virtual void updateDisplay(bool complete);
|
||||
|
||||
|
||||
@ -1888,7 +1888,7 @@ static void processList(const QStringList &list, const QString &textSingular, co
|
||||
return false;
|
||||
}
|
||||
|
||||
idDialog->navigateToCircle(RsGxsGroupId(link.hash().toStdString()));
|
||||
idDialog->navigateToCircle(RsGxsCircleId(link.hash().toStdString()));
|
||||
circleFound.append(link.name());
|
||||
}
|
||||
break;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user