| 70 | |
| 71 | |
| 72 | QValidator::State DoubleValidator::validate(QString& input, int& pos) const |
| 73 | { |
| 74 | // Transform thousands group separators into decimal points to avoid confusion |
| 75 | input.replace(QLatin1Char(','), QLatin1Char('.')); |
| 76 | |
| 77 | return QDoubleValidator::validate(input, pos); |
| 78 | } |
| 79 | |
| 80 | |
| 81 |
no outgoing calls
no test coverage detected