aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2012-08-23 21:55:03 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2012-08-23 21:57:20 +0200
commit05fa0de6d856c034236ee658f9778a400e4dcfdf (patch)
tree941a309b0b40dc0b583e9bc0f58d221bb6eac931 /src
parent47753fa369f15274718779ffea1e2f151aa8307d (diff)
downloadbitcoin-05fa0de6d856c034236ee658f9778a400e4dcfdf.tar.xz
Add icon for "About Qt" in menu
Use the built-in icon that is also used in the dialog box itself.
Diffstat (limited to 'src')
-rw-r--r--src/qt/bitcoingui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp
index 7e6ad15d6a..b81b832a87 100644
--- a/src/qt/bitcoingui.cpp
+++ b/src/qt/bitcoingui.cpp
@@ -257,7 +257,7 @@ void BitcoinGUI::createActions()
aboutAction = new QAction(QIcon(":/icons/bitcoin"), tr("&About Bitcoin"), this);
aboutAction->setToolTip(tr("Show information about Bitcoin"));
aboutAction->setMenuRole(QAction::AboutRole);
- aboutQtAction = new QAction(tr("About &Qt"), this);
+ aboutQtAction = new QAction(QIcon(":/trolltech/qmessagebox/images/qtlogo-64.png"), tr("About &Qt"), this);
aboutQtAction->setToolTip(tr("Show information about Qt"));
aboutQtAction->setMenuRole(QAction::AboutQtRole);
optionsAction = new QAction(QIcon(":/icons/options"), tr("&Options..."), this);