mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-12-16 09:03:51 -05:00
completely removed TokenQueue from GxsGroupDialog and GxsGroupFrameDialog
This commit is contained in:
parent
7ba83272cf
commit
6c1f09a53b
26 changed files with 423 additions and 217 deletions
|
|
@ -93,6 +93,12 @@ bool GxsForumsDialog::getGroupData(std::list<RsGxsGenericGroupData*>& groupInfo)
|
|||
return true;
|
||||
}
|
||||
|
||||
bool GxsForumsDialog::getGroupStatistics(const RsGxsGroupId& groupId,GxsGroupStatistic& stat)
|
||||
{
|
||||
return rsGxsForums->getForumStatistics(groupId,stat);
|
||||
}
|
||||
|
||||
|
||||
|
||||
QString GxsForumsDialog::getHelpString() const
|
||||
{
|
||||
|
|
@ -181,14 +187,14 @@ QString GxsForumsDialog::icon(IconType type)
|
|||
return "";
|
||||
}
|
||||
|
||||
GxsGroupDialog *GxsForumsDialog::createNewGroupDialog(TokenQueue *tokenQueue)
|
||||
GxsGroupDialog *GxsForumsDialog::createNewGroupDialog()
|
||||
{
|
||||
return new GxsForumGroupDialog(tokenQueue, this);
|
||||
return new GxsForumGroupDialog(this);
|
||||
}
|
||||
|
||||
GxsGroupDialog *GxsForumsDialog::createGroupDialog(TokenQueue *tokenQueue, RsTokenService *tokenService, GxsGroupDialog::Mode mode, RsGxsGroupId groupId)
|
||||
GxsGroupDialog *GxsForumsDialog::createGroupDialog(GxsGroupDialog::Mode mode, RsGxsGroupId groupId)
|
||||
{
|
||||
return new GxsForumGroupDialog(tokenQueue, tokenService, mode, groupId, this);
|
||||
return new GxsForumGroupDialog(mode, groupId, this);
|
||||
}
|
||||
|
||||
int GxsForumsDialog::shareKeyType()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue