| 445 | } |
| 446 | |
| 447 | QString SpinExclude::textFromValue(int value) const |
| 448 | { |
| 449 | QString txt = QSpinBox::textFromValue(value); |
| 450 | if (value == 0) |
| 451 | txt += " " + tr("(ignore)"); |
| 452 | if (value == -1) |
| 453 | txt += " " + tr("(exclude)"); |
| 454 | return txt; |
| 455 | } |
| 456 | |
| 457 | void SpinExclude::change(int v) |
| 458 | { |
nothing calls this directly
no outgoing calls
no test coverage detected