Enabled the menu item in the context menu again to copy the link when right clicking on a link.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@5522 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
thunder2 2012-09-07 21:28:25 +00:00
parent 3d341b3817
commit fb389f6116
5 changed files with 14 additions and 14 deletions

View file

@ -538,9 +538,9 @@ void MessageComposer::closeEvent (QCloseEvent * event)
}
}
void MessageComposer::contextMenu(QPoint)
void MessageComposer::contextMenu(QPoint point)
{
QMenu *contextMnu = ui.msgText->createStandardContextMenu();
QMenu *contextMnu = ui.msgText->createStandardContextMenu(point);
contextMnu->addSeparator();
QAction *action = contextMnu->addAction(QIcon(":/images/pasterslink.png"), tr("Paste RetroShare Link"), this, SLOT(pasteLink()));