mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-08-10 23:30:14 -04:00
Modified Identity & Wiki GXS code so that it compiles.
- Just commented out the issues - still needs to be converted to new system. - Included it in build - Not actually enabled in the GUI yet. git-svn-id: http://svn.code.sf.net/p/retroshare/code/branches/v0.5-gxs-b1@5750 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
2fadb6d44d
commit
cfef2cc052
10 changed files with 275 additions and 138 deletions
|
@ -79,8 +79,9 @@ IdDialog::IdDialog(QWidget *parent)
|
|||
timer->start(1000);
|
||||
|
||||
rsIdentity->generateDummyData();
|
||||
|
||||
#if 0
|
||||
mIdQueue = new TokenQueue(rsIdentity, this);
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
|
@ -145,8 +146,10 @@ void IdDialog::requestIdDetails(std::string &id)
|
|||
void IdDialog::insertIdDetails(uint32_t token)
|
||||
{
|
||||
/* get details from libretroshare */
|
||||
RsIdGroup data;
|
||||
RsGxsIdGroup data;
|
||||
#if 0
|
||||
if (!rsIdentity->getGroupData(token, data))
|
||||
#endif
|
||||
{
|
||||
ui.lineEdit_KeyId->setText("ERROR GETTING KEY!");
|
||||
return;
|
||||
|
@ -287,8 +290,12 @@ void IdDialog::insertIdList(uint32_t token)
|
|||
|
||||
//for(it = ids.begin(); it != ids.end(); it++)
|
||||
//{
|
||||
RsIdGroup data;
|
||||
RsGxsIdGroup data;
|
||||
#if 0
|
||||
while(rsIdentity->getGroupData(token, data))
|
||||
#else
|
||||
while(0)
|
||||
#endif
|
||||
{
|
||||
|
||||
/* do filtering */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue