aboutsummaryrefslogtreecommitdiff
path: root/src/qt/addressbookpage.cpp
diff options
context:
space:
mode:
authorPhilip Kaufmann <phil.kaufmann@t-online.de>2013-10-25 14:19:44 +0200
committerPhilip Kaufmann <phil.kaufmann@t-online.de>2013-10-25 14:28:34 +0200
commitd57a496c513e5f1c44a19972225d105e568f0594 (patch)
treeb77c0e5af3f61d72823f6cfb426ee0f63a251c85 /src/qt/addressbookpage.cpp
parent081c0cdeb2b8c1e8db449f3b38837c4ca3b4ba73 (diff)
downloadbitcoin-d57a496c513e5f1c44a19972225d105e568f0594.tar.xz
[Qt] misc small fixes for #3099 (new receive flow)
- changes some strings that were forgotton or made no sense in the conext they are used - remove an orphan file from the qt project file - revert a small change in signverifymessagedialog.ui - guard #include "bitcoin-config.h" with #if defined(HAVE_CONFIG_H) - remove windowTitle from addressbookpage.ui
Diffstat (limited to 'src/qt/addressbookpage.cpp')
-rw-r--r--src/qt/addressbookpage.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/addressbookpage.cpp b/src/qt/addressbookpage.cpp
index 0b364afca8..ba5de4660a 100644
--- a/src/qt/addressbookpage.cpp
+++ b/src/qt/addressbookpage.cpp
@@ -69,7 +69,7 @@ AddressBookPage::AddressBookPage(Mode mode, Tabs tab, QWidget *parent) :
}
// Context menu actions
- QAction *copyAddressAction = new QAction(ui->copyAddress->text(), this);
+ QAction *copyAddressAction = new QAction(tr("&Copy Address"), this);
QAction *copyLabelAction = new QAction(tr("Copy &Label"), this);
QAction *editAction = new QAction(tr("&Edit"), this);
deleteAction = new QAction(ui->deleteAddress->text(), this);