diff options
author | Philip Kaufmann <phil.kaufmann@t-online.de> | 2013-11-22 13:53:05 +0100 |
---|---|---|
committer | Philip Kaufmann <phil.kaufmann@t-online.de> | 2013-11-24 16:30:14 +0100 |
commit | 84b695cc9d4dc90b1ccb99e2d92e1e76e138d911 (patch) | |
tree | 70576340fb9a7ff88c2448111ba032fa74565297 /src/qt/sendcoinsentry.h | |
parent | d4cda964d29e370a4b433334b7fe4dcd9fe8b0c6 (diff) |
[Qt] allow deletion of payment-requests in sendcoins
- this adds a delete button for insecure and secure payment requests in
the sendcoins dialog
- it also enables the delete button even for single and empty entries, as
this is much easier to handle and doesn't need to special case single
entries
- big parts of the ui file were changed, because I copied the delete
button and had to delete the layout too and created it from scratch
(which seems to cleanup the rows and colums in the layout also, which is
nice IMHO)
Diffstat (limited to 'src/qt/sendcoinsentry.h')
-rw-r--r-- | src/qt/sendcoinsentry.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/qt/sendcoinsentry.h b/src/qt/sendcoinsentry.h index 1c4ddaa8ef..2b696c77fb 100644 --- a/src/qt/sendcoinsentry.h +++ b/src/qt/sendcoinsentry.h @@ -46,7 +46,6 @@ public: void setFocus(); public slots: - void setRemoveEnabled(bool enabled); void clear(); signals: @@ -54,7 +53,7 @@ signals: void payAmountChanged(); private slots: - void on_deleteButton_clicked(); + void deleteClicked(); void on_payTo_textChanged(const QString &address); void on_addressBookButton_clicked(); void on_pasteButton_clicked(); |