added missing "FORWARDED_PORT" case to natstatus

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4513 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
drbob 2011-08-02 19:07:22 +00:00
parent 3ef08fead5
commit c1d23c27c7

View File

@ -111,7 +111,13 @@ void NATStatus::getNATStatus()
case RSNET_NETSTATE_GOOD:
{
iconLabel->setPixmap(QPixmap(":/images/greenled.png"));
iconLabel->setToolTip(tr("OK | RetroShare Server"));
iconLabel->setToolTip(tr("RetroShare Server"));
}
case RSNET_NETSTATE_ADV_FORWARD:
{
iconLabel->setPixmap(QPixmap(":/images/greenled.png"));
iconLabel->setToolTip(tr("Forwarded Port"));
}
break;
}