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:
drbob 2012-10-31 23:32:56 +00:00
parent 2fadb6d44d
commit cfef2cc052
10 changed files with 275 additions and 138 deletions

View file

@ -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 */