aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2012-08-23 13:03:14 -0700
committerWladimir J. van der Laan <laanwj@gmail.com>2012-08-23 13:03:14 -0700
commit579d011738002b77e3a5f8713461eaa3de492e00 (patch)
tree941a309b0b40dc0b583e9bc0f58d221bb6eac931
parent47753fa369f15274718779ffea1e2f151aa8307d (diff)
parent05fa0de6d856c034236ee658f9778a400e4dcfdf (diff)
downloadbitcoin-579d011738002b77e3a5f8713461eaa3de492e00.tar.xz
Merge pull request #1713 from laanwj/2012_08_aboutqticon
Add icon for "About Qt" in menu
-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);