diff options
| author | Wladimir J. van der Laan <[email protected]> | 2012-05-06 22:41:35 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2012-05-20 10:44:50 +0200 |
| commit | 0832c0d1669a3504b7ec21d583aecc79f84e8506 (patch) | |
| tree | 347838e641b27a89db7a8d065e18eab76b06a0c7 /src/qt/walletmodel.h | |
| parent | Convert UI interface to boost::signals2. (diff) | |
| download | discoin-0832c0d1669a3504b7ec21d583aecc79f84e8506.tar.xz discoin-0832c0d1669a3504b7ec21d583aecc79f84e8506.zip | |
Process address book updates incrementally
- No longer invalidates selection model, thus retains selection on address book changes
- Fixes selection of new address when added
Diffstat (limited to 'src/qt/walletmodel.h')
| -rw-r--r-- | src/qt/walletmodel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/walletmodel.h b/src/qt/walletmodel.h index c413ed243..8b615ffe8 100644 --- a/src/qt/walletmodel.h +++ b/src/qt/walletmodel.h @@ -145,7 +145,7 @@ public slots: /* New transaction, or transaction changed status */ void updateTransaction(const QString &hash, int status); /* New, updated or removed address book entry */ - void updateAddressBook(const QString &address, const QString &label, int status); + void updateAddressBook(const QString &address, const QString &label, bool isMine, int status); }; |