diff options
| author | Wladimir J. van der Laan <[email protected]> | 2011-07-22 17:06:37 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2011-07-22 17:06:37 +0200 |
| commit | 73cd5e5212be7ff05f7205c1e7519af1cf01e322 (patch) | |
| tree | 2afeb72a63b08600306182aef85bdea825231f42 /src/qt/sendcoinsentry.cpp | |
| parent | one remove/delete icon is enough and the red minus better matches the add icon (diff) | |
| download | discoin-73cd5e5212be7ff05f7205c1e7519af1cf01e322.tar.xz discoin-73cd5e5212be7ff05f7205c1e7519af1cf01e322.zip | |
fix clear() (clear red/invalid status)
Diffstat (limited to 'src/qt/sendcoinsentry.cpp')
| -rw-r--r-- | src/qt/sendcoinsentry.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/sendcoinsentry.cpp b/src/qt/sendcoinsentry.cpp index 6e87e9cf9..2d4fe9b12 100644 --- a/src/qt/sendcoinsentry.cpp +++ b/src/qt/sendcoinsentry.cpp @@ -68,7 +68,7 @@ void SendCoinsEntry::clear() { ui->payTo->clear(); ui->addAsLabel->clear(); - ui->payAmount->setText(QString()); + ui->payAmount->clear(); ui->payTo->setFocus(); } |