forgot to commit this

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4373 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
csoler 2011-07-01 21:01:47 +00:00
parent e9853b655c
commit 3f809b6c3a
2 changed files with 2 additions and 2 deletions

View File

@ -316,7 +316,7 @@ void ConfCertDialog::load()
}
ui.signers->setHtml(text);
std::string invite = rsPeers->GetRetroshareInvite(detail.id) ; // this needs to be a SSL id
std::string invite = rsPeers->GetRetroshareInvite(detail.id,true) ; // this needs to be a SSL id
ui.userCertificateText->setReadOnly(true);
ui.userCertificateText->setMinimumHeight(200);

View File

@ -65,7 +65,7 @@ CryptoPage::load()
QFont font("Courier New",9,50,false) ;
ui.certtextEdit->setFont(font) ;
ui.certtextEdit->setPlainText(QString::fromStdString(rsPeers->GetRetroshareInvite()));
ui.certtextEdit->setPlainText(QString::fromStdString(rsPeers->GetRetroshareInvite(true)));
ui.certtextEdit->setReadOnly(true);
ui.certtextEdit->setMinimumHeight(200);
}