fixed bug causing false alarms of wrong reported IP from friends.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@8385 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
csoler 2015-06-06 13:50:11 +00:00
parent 662fccd3a4
commit ea7a5a5929
4 changed files with 48 additions and 9 deletions

View file

@ -154,7 +154,7 @@ void SecurityIpItem::updateItem()
ui->ipAddr->setText(QString::fromStdString(mIpAddr));
ui->ipAddr->setToolTip(tr("<p>This is the external IP your Retroshare node thinks it is using.</p>")) ;
ui->ipAddrReported->setText(QString::fromStdString(mIpAddrReported));
ui->ipAddrReported->setToolTip(tr("<p>This is the IP your friend claims it is connected to. If you changed IPs this is just a false warning. If not, that means your connection to this friend is forwarded by an intermediate peer, which would be suspicious.</p>")) ;
ui->ipAddrReported->setToolTip(tr("<p>This is the IP your friend claims it is connected to. If you just changed IPs, this is a false warning. If not, that means your connection to this friend is forwarded by an intermediate peer, which would be suspicious.</p>")) ;
break;
default:
std::cerr << "SecurityIpItem::updateItem() Wrong type" << std::endl;