* Added new icon for Notify

* set correct icon for Deny Friend Context Menu


git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1123 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
defnax 2009-04-09 20:19:03 +00:00
parent 2c69866a79
commit 5025c34033
4 changed files with 9 additions and 7 deletions

View file

@ -156,7 +156,7 @@ void NetworkDialog::connecttreeWidgetCostumPopupMenu( QPoint point )
if(peer_id != rsPeers->getOwnId())
if(detail.state & RS_PEER_STATE_FRIEND)
{
denyFriendAct = new QAction(QIcon(IMAGE_MAKEFRIEND), tr( "Deny friend" ), this );
denyFriendAct = new QAction(QIcon(IMAGE_DENIED), tr( "Deny friend" ), this );
connect( denyFriendAct , SIGNAL( triggered() ), this, SLOT( denyFriend() ) );
contextMnu.addAction( denyFriendAct);