diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-07-18 16:31:13 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-07-23 17:58:46 +0200 |
commit | 91cce1732b73c4457e474c557aaa7f343c0dc8a2 (patch) | |
tree | d1698a0f93194115581ff012a0ce3eae4c63faff /src/qt/bitcoinunits.cpp | |
parent | d5a3fd10e50ea8b2a43e307ed1f52d286663e551 (diff) |
qt: Use fixed-point arithmetic in amount spinbox
Fixes various issues and cleans up code
- Fixes issue #4500: Amount widget +/- has floating point rounding artifacts
- Amount box can now be emptied again, without clearing to 0
Also aligns the amount to the right, as in other places.
Diffstat (limited to 'src/qt/bitcoinunits.cpp')
-rw-r--r-- | src/qt/bitcoinunits.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/qt/bitcoinunits.cpp b/src/qt/bitcoinunits.cpp index 21aed235cf..0435ebc5dc 100644 --- a/src/qt/bitcoinunits.cpp +++ b/src/qt/bitcoinunits.cpp @@ -4,6 +4,8 @@ #include "bitcoinunits.h" +#include "core.h" + #include <QStringList> BitcoinUnits::BitcoinUnits(QObject *parent): @@ -250,3 +252,8 @@ QVariant BitcoinUnits::data(const QModelIndex &index, int role) const } return QVariant(); } + +qint64 BitcoinUnits::maxMoney() +{ + return MAX_MONEY; +} |