summaryrefslogtreecommitdiffstats
path: root/src/gui/util/qvalidator.cpp
diff options
context:
space:
mode:
authorVolker Hilsheimer <volker.hilsheimer@qt.io>2020-04-02 14:20:16 +0200
committerVolker Hilsheimer <volker.hilsheimer@qt.io>2020-04-03 16:05:04 +0200
commitde78425ca0c508eb02aaac794ecbcda5ff09a5eb (patch)
tree67e5c7b1efe5442d1c386e45718c46eb024625be /src/gui/util/qvalidator.cpp
parentaf6f3cb31772fcc05d3e1e55c72210390d4df4e6 (diff)
Make setRange methods in QValidator subclasses non-virtual
As per the FIXME comment. These functions are not called by Qt, so no reason to have them virtual. As a drive-by, remove redundant virtual keyword from overrides. [ChangeLog][QtGui][QValidator] QIntValidator::setRange and QDoubleValidator::setRange are no longer declared as virtual. Change-Id: I640646fb18ed50554e384ed67ac85b3f408ea8cc Reviewed-by: Edward Welbourne <edward.welbourne@qt.io>
Diffstat (limited to 'src/gui/util/qvalidator.cpp')
-rw-r--r--src/gui/util/qvalidator.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/gui/util/qvalidator.cpp b/src/gui/util/qvalidator.cpp
index b01b09c0f9..61eed3fff1 100644
--- a/src/gui/util/qvalidator.cpp
+++ b/src/gui/util/qvalidator.cpp
@@ -456,8 +456,6 @@ void QIntValidator::fixup(QString &input) const
input = locale().toString(entered);
}
-// FIXME: Qt 6: Make QIntValidator::setRange() non-virtual
-
/*!
Sets the range of the validator to only accept integers between \a
bottom and \a top inclusive.
@@ -708,8 +706,6 @@ QValidator::State QDoubleValidatorPrivate::validateWithLocale(QString &input, QL
return QValidator::Intermediate;
}
-// FIXME: Qt 6: Make QDoubleValidator::setRange() non-virtual
-
/*!
Sets the validator to accept doubles from \a minimum to \a maximum
inclusive, with at most \a decimals digits after the decimal