Added ConnectProgressDialog - to help people workout why RS is not connecting.

- Pops up when you do a "Connect Attempt" from the FriendList.




git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6590 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
drbob 2013-08-22 07:30:54 +00:00
parent f519ae1a0d
commit b566d6d69c
7 changed files with 1297 additions and 0 deletions

View file

@ -51,6 +51,11 @@
#include "util/misc.h"
#include "vmessagebox.h"
#define PROGRESS_DIALOG 1
#ifdef PROGRESS_DIALOG
#include "gui/connect/ConnectProgressDialog.h"
#endif
#include "FriendList.h"
#include "ui_FriendList.h"
@ -1491,6 +1496,9 @@ void FriendList::connectfriend()
//this is a SSL key
rsPeers->connectAttempt(getRsId(c));
c->setIcon(COLUMN_NAME,(QIcon(IMAGE_CONNECT2)));
#ifdef PROGRESS_DIALOG
ConnectProgressDialog::showProgress(getRsId(c));
#endif
}
}
}