diff options
| author | Hennadii Stepanov <[email protected]> | 2020-03-14 08:49:59 +0200 |
|---|---|---|
| committer | Hennadii Stepanov <[email protected]> | 2020-05-08 10:36:58 +0300 |
| commit | 1551cea2d52cac403ff506a7cc955d8de8fd6f3e (patch) | |
| tree | 63665a4ab090e2b3c3c27a0a359b71ad492f6c50 /src/qt/bitcoinamountfield.cpp | |
| parent | Merge #18905: travis: Remove s390x (diff) | |
| download | discoin-1551cea2d52cac403ff506a7cc955d8de8fd6f3e.tar.xz discoin-1551cea2d52cac403ff506a7cc955d8de8fd6f3e.zip | |
refactor: Use override for non-final overriders
Diffstat (limited to 'src/qt/bitcoinamountfield.cpp')
| -rw-r--r-- | src/qt/bitcoinamountfield.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/qt/bitcoinamountfield.cpp b/src/qt/bitcoinamountfield.cpp index 7acc82370..4c57f1e35 100644 --- a/src/qt/bitcoinamountfield.cpp +++ b/src/qt/bitcoinamountfield.cpp @@ -31,7 +31,7 @@ public: connect(lineEdit(), &QLineEdit::textEdited, this, &AmountSpinBox::valueChanged); } - QValidator::State validate(QString &text, int &pos) const + QValidator::State validate(QString &text, int &pos) const override { if(text.isEmpty()) return QValidator::Intermediate; @@ -41,7 +41,7 @@ public: return valid ? QValidator::Intermediate : QValidator::Invalid; } - void fixup(QString &input) const + void fixup(QString &input) const override { bool valid; CAmount val; @@ -87,7 +87,7 @@ public: m_max_amount = value; } - void stepBy(int steps) + void stepBy(int steps) override { bool valid = false; CAmount val = value(&valid); @@ -114,7 +114,7 @@ public: singleStep = step; } - QSize minimumSizeHint() const + QSize minimumSizeHint() const override { if(cachedMinimumSizeHint.isEmpty()) { @@ -175,7 +175,7 @@ private: } protected: - bool event(QEvent *event) + bool event(QEvent *event) override { if (event->type() == QEvent::KeyPress || event->type() == QEvent::KeyRelease) { @@ -190,7 +190,7 @@ protected: return QAbstractSpinBox::event(event); } - StepEnabled stepEnabled() const + StepEnabled stepEnabled() const override { if (isReadOnly()) // Disable steps when AmountSpinBox is read-only return StepNone; |