Added to details to display the Status

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3865 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
defnax 2010-11-23 22:06:58 +00:00
parent ebef7e7141
commit 3bad8ad1c9
2 changed files with 25 additions and 5 deletions

View file

@ -157,6 +157,8 @@ void ConfCertDialog::load()
ui.extPort -> setValue(detail.extPort);
ui.dynDNS->setText(QString::fromStdString(detail.dyndns));
ui.statusline->setText(QString::fromStdString(detail.autoconnect));
ui.ipAddressList->clear();
for(std::list<std::string>::const_iterator it(detail.ipAddressList.begin());it!=detail.ipAddressList.end();++it)
@ -164,6 +166,8 @@ void ConfCertDialog::load()
ui.loc->show();
ui.label_loc->show();
ui.statusline->show();
ui.label_status->show();
ui.lastcontact->show();
ui.label_last_contact->show();
ui.version->show();
@ -177,6 +181,8 @@ void ConfCertDialog::load()
ui.label_rsid->show();
ui.loc->hide();
ui.label_loc->hide();
ui.statusline->hide();
ui.label_status->hide();
ui.lastcontact->hide();
ui.label_last_contact->hide();
ui.version->hide();