mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
fixed compilation of rs-nogui
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7281 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
4907d29156
commit
2c0a22b68e
@ -144,8 +144,8 @@ void NotifyTxt::notifyListChange(int list, int type)
|
||||
|
||||
void NotifyTxt::displayNeighbours()
|
||||
{
|
||||
std::list<std::string> neighs;
|
||||
std::list<std::string>::iterator it;
|
||||
std::list<RsPgpId> neighs;
|
||||
std::list<RsPgpId>::iterator it;
|
||||
|
||||
rsPeers->getGPGAllList(neighs);
|
||||
|
||||
@ -153,7 +153,7 @@ void NotifyTxt::displayNeighbours()
|
||||
for(it = neighs.begin(); it != neighs.end(); it++)
|
||||
{
|
||||
RsPeerDetails detail;
|
||||
rsPeers->getPeerDetails(*it, detail);
|
||||
rsPeers->getGPGDetails(*it, detail);
|
||||
|
||||
out << "Neighbour: ";
|
||||
out << detail;
|
||||
@ -164,8 +164,8 @@ void NotifyTxt::displayNeighbours()
|
||||
|
||||
void NotifyTxt::displayFriends()
|
||||
{
|
||||
std::list<std::string> ids;
|
||||
std::list<std::string>::iterator it;
|
||||
std::list<RsPeerId> ids;
|
||||
std::list<RsPeerId>::iterator it;
|
||||
|
||||
rsPeers->getFriendList(ids);
|
||||
|
||||
|
@ -24,15 +24,6 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#error "******************************************************************************************************************"
|
||||
#error "**** Retroshare trunk/ is currently being merged to v0.6 and protocols are not stable. It is unlikely that *****"
|
||||
#error "**** you want to compile the trunk now. *****"
|
||||
#error "**** *****"
|
||||
#error "**** To compile the latest Retroshare 0.5.5, please go to branches/v0.5.5 *****"
|
||||
#error "**** *****"
|
||||
#error "**** --- The dev team --- *****"
|
||||
#error "******************************************************************************************************************"
|
||||
|
||||
#include <retroshare/rsiface.h> /* definition of iface */
|
||||
#include <retroshare/rsinit.h> /* definition of iface */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user