aboutsummaryrefslogtreecommitdiff
path: root/src/qt/addressbookpage.h
diff options
context:
space:
mode:
authorPhilip Kaufmann <phil.kaufmann@t-online.de>2012-07-08 18:48:56 +0200
committerPhilip Kaufmann <phil.kaufmann@t-online.de>2012-07-08 18:49:07 +0200
commitddadf791f19cce8b20910b441e98bbc9bea597ac (patch)
tree070d8ac6a706472ac42fde7157a07469ff8cc363 /src/qt/addressbookpage.h
parentea53f183fce65619dbedca54c1aa7e4dba1daa32 (diff)
downloadbitcoin-ddadf791f19cce8b20910b441e98bbc9bea597ac.tar.xz
replace some ugly code in addressbookpage.cpp
- add signals signMessage() and verifyMessage() in addressbookpage.cpp - connect to them in bitcoingui.cpp to switch to the corresponding tab in the Sign/Verify Message dialog - make gotoSignMessageTab() and gotoVerifyMessageTab() private slots
Diffstat (limited to 'src/qt/addressbookpage.h')
-rw-r--r--src/qt/addressbookpage.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/qt/addressbookpage.h b/src/qt/addressbookpage.h
index fae688fc9d..df87486949 100644
--- a/src/qt/addressbookpage.h
+++ b/src/qt/addressbookpage.h
@@ -76,6 +76,10 @@ private slots:
/** New entry/entries were added to address table */
void selectNewAddress(const QModelIndex &parent, int begin, int end);
+
+signals:
+ void signMessage(QString addr);
+ void verifyMessage(QString addr);
};
#endif // ADDRESSBOOKDIALOG_H