diff options
| author | Wladimir J. van der Laan <[email protected]> | 2011-06-30 19:43:44 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2011-06-30 19:43:44 +0200 |
| commit | d61b7d13e4b5ac7bcb864bc9ff8fdb2ee17b0126 (patch) | |
| tree | 72d529b89064037dfed5dced86a67ce9c6b15778 /src/qt/bitcoingui.cpp | |
| parent | Make it very clear when on testnet (green icon, add [testnet] to title) (diff) | |
| download | discoin-d61b7d13e4b5ac7bcb864bc9ff8fdb2ee17b0126.tar.xz discoin-d61b7d13e4b5ac7bcb864bc9ff8fdb2ee17b0126.zip | |
Add "receiving addresses" to toolbar
Diffstat (limited to 'src/qt/bitcoingui.cpp')
| -rw-r--r-- | src/qt/bitcoingui.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index 4e5eaa068..84eb36659 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -72,6 +72,7 @@ BitcoinGUI::BitcoinGUI(QWidget *parent): toolbar->setToolButtonStyle(Qt::ToolButtonTextBesideIcon); toolbar->addAction(sendcoins); toolbar->addAction(addressbook); + toolbar->addAction(receivingAddresses); // Address: <address>: New... : Paste to clipboard QHBoxLayout *hbox_address = new QHBoxLayout(); @@ -162,7 +163,7 @@ void BitcoinGUI::createActions() addressbook->setToolTip(tr("Edit the list of stored addresses and labels")); about = new QAction(QIcon(":/icons/bitcoin"), tr("&About"), this); about->setToolTip(tr("Show information about Bitcoin")); - receivingAddresses = new QAction(QIcon(":/icons/receiving_addresses"), tr("Your &Receiving Addresses..."), this); + receivingAddresses = new QAction(QIcon(":/icons/receiving_addresses"), tr("&Receiving Addresses..."), this); receivingAddresses->setToolTip(tr("Show the list of receiving addresses and edit their labels")); options = new QAction(QIcon(":/icons/options"), tr("&Options..."), this); options->setToolTip(tr("Modify configuration options for bitcoin")); |