diff options
| author | Wladimir J. van der Laan <[email protected]> | 2011-07-30 19:21:46 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2011-07-30 19:21:46 +0200 |
| commit | f0ec774d9c3a95142d680a396dd4430bf301e78d (patch) | |
| tree | 7e8bc2cbd40c3a580262e046bd5754db904765a0 /src/qt/walletmodel.cpp | |
| parent | Remove unused variable (diff) | |
| download | discoin-f0ec774d9c3a95142d680a396dd4430bf301e78d.tar.xz discoin-f0ec774d9c3a95142d680a396dd4430bf301e78d.zip | |
make sure address book model is up to date after sending coins
Diffstat (limited to 'src/qt/walletmodel.cpp')
| -rw-r--r-- | src/qt/walletmodel.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/qt/walletmodel.cpp b/src/qt/walletmodel.cpp index 4d8d6fe45..53555cc08 100644 --- a/src/qt/walletmodel.cpp +++ b/src/qt/walletmodel.cpp @@ -159,6 +159,7 @@ WalletModel::SendCoinsReturn WalletModel::sendCoins(const QList<SendCoinsRecipie wallet->SetAddressBookName(strAddress, rcp.label.toStdString()); } } + addressTableModel->updateList(); return SendCoinsReturn(OK, 0, hex); } |