From 5c11906c72d3bdb1a9dc03506fb9418bf010d28d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mladen=20Pejakovi=C4=87?= Date: Sun, 8 Jan 2012 15:21:49 +0100 Subject: [PATCH] Fix Send image menu entry --- src/webview/webview.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/webview/webview.cpp b/src/webview/webview.cpp index 55cf0bb5a..9eee9aa84 100644 --- a/src/webview/webview.cpp +++ b/src/webview/webview.cpp @@ -484,7 +484,7 @@ void WebView::contextMenuEvent(QContextMenuEvent* event) m_menu->addAction(QIcon::fromTheme("edit-copy"), tr("Copy image ad&dress"), this, SLOT(copyLinkToClipboard()))->setData(r.imageUrl()); m_menu->addSeparator(); m_menu->addAction(QIcon::fromTheme("document-save"), tr("&Save image as..."), this, SLOT(downloadImageToDisk()))->setData(r.imageUrl()); - m_menu->addAction(tr("Send image..."), this, SLOT(sendLinkByMail()))->setData(r.linkUrl()); + m_menu->addAction(tr("Send image..."), this, SLOT(sendLinkByMail()))->setData(r.imageUrl()); m_menu->addSeparator(); //menu->addAction(tr("Block image"), this, SLOT(blockImage()))->setData(r.imageUrl().toString()); if (!selectedText().isEmpty()) {