From 18ab37e5cd3b3c4b6ed716be1584923e6328878c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mladen=20Pejakovi=C4=87?= Date: Sun, 22 Jan 2012 02:34:05 +0100 Subject: [PATCH] Eye candy: icon for Send link in File menu (the same as in webview) --- src/app/qupzilla.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/qupzilla.cpp b/src/app/qupzilla.cpp index a7ac6143d..ee607f64d 100644 --- a/src/app/qupzilla.cpp +++ b/src/app/qupzilla.cpp @@ -350,7 +350,7 @@ void QupZilla::setupMenu() m_menuFile->addSeparator(); m_menuFile->addAction(QIcon::fromTheme("document-save"), tr("&Save Page As..."), this, SLOT(savePage()))->setShortcut(QKeySequence("Ctrl+S")); m_menuFile->addAction(tr("Save Page Screen"), this, SLOT(savePageScreen())); - m_menuFile->addAction(tr("Send Link..."), this, SLOT(sendLink())); + m_menuFile->addAction(QIcon::fromTheme("mail-message-new"), tr("Send Link..."), this, SLOT(sendLink())); m_menuFile->addAction(QIcon::fromTheme("document-print"), tr("&Print"), this, SLOT(printPage())); m_menuFile->addSeparator(); m_menuFile->addSeparator();