diff options
| author | Wladimir J. van der Laan <[email protected]> | 2013-04-12 12:24:41 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2013-04-12 13:13:32 +0200 |
| commit | 45155d3010a3bbbe3cfbba670538ae18b9772a39 (patch) | |
| tree | ce1a8631df298aef4bda092143651ddf70234769 /src/qt/addressbookpage.h | |
| parent | Merge pull request #2514 from TheBlueMatt/master (diff) | |
| download | discoin-45155d3010a3bbbe3cfbba670538ae18b9772a39.tar.xz discoin-45155d3010a3bbbe3cfbba670538ae18b9772a39.zip | |
qt: move export button to tabs
Having the export button at the top was confusing people into thinking
the entire wallet was exported.
This commit moves the export button to the address book, receiving
addresses and transaction tabs separately.
Diffstat (limited to 'src/qt/addressbookpage.h')
| -rw-r--r-- | src/qt/addressbookpage.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/qt/addressbookpage.h b/src/qt/addressbookpage.h index 063178168..34465aa65 100644 --- a/src/qt/addressbookpage.h +++ b/src/qt/addressbookpage.h @@ -43,7 +43,6 @@ public: public slots: void done(int retval); - void exportClicked(); private: Ui::AddressBookPage *ui; @@ -76,6 +75,8 @@ private slots: void onCopyLabelAction(); /** Edit currently selected address entry (no button) */ void onEditAction(); + /** Export button clicked */ + void on_exportButton_clicked(); /** Set button states based on selected tab and selection */ void selectionChanged(); |