| 20 | #include <QAbstractItemModel> |
| 21 | |
| 22 | StringValidator::StringValidator(QObject* parent) |
| 23 | : QValidator(parent), |
| 24 | m_model(nullptr) |
| 25 | { |
| 26 | } |
| 27 | |
| 28 | void StringValidator::setModel(const QAbstractItemModel* model) |
| 29 | { |
nothing calls this directly
no outgoing calls
no test coverage detected