removed display of link hash. not useful to the end-user

git-svn-id: http://svn.code.sf.net/p/retroshare/code/branches/v0.5-GenericTunneling@6328 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
csoler 2013-04-22 20:59:13 +00:00
parent 2485f9fffd
commit 6ddfe35353
2 changed files with 0 additions and 33 deletions

View file

@ -56,7 +56,6 @@ void CreateMsgLinkDialog::updateCurrentRow(int r)
if(r < 0)
{
_current_link_type_LE->setText("") ;
_current_link_hash_LE->setText("") ;
_current_link_dst_LE->setText("") ;
_current_link_date_DE->setDateTime(QDateTime::fromMSecsSinceEpoch(0)) ;
return ;
@ -72,7 +71,6 @@ void CreateMsgLinkDialog::updateCurrentRow(int r)
else
_current_link_type_LE->setText( tr("Public message invite") ) ;
_current_link_hash_LE->setText(link.hash()) ;
_current_link_dst_LE->setText(link.GPGId()) ;
_current_link_date_DE->setDateTime(QDateTime::fromMSecsSinceEpoch(link.timeStamp() * 1000 )) ;
}