| 194 | } |
| 195 | |
| 196 | void TestCaseEditWidget::fullScoreChanged(const QString &text) { |
| 197 | if (! editTestCase) |
| 198 | return; |
| 199 | |
| 200 | editTestCase->setFullScore(text.toInt()); |
| 201 | } |
| 202 | |
| 203 | void TestCaseEditWidget::timeLimitChanged(const QString &text) { |
| 204 | if (! editTestCase) |
nothing calls this directly
no test coverage detected