| 201 | } |
| 202 | |
| 203 | void TestCaseEditWidget::timeLimitChanged(const QString &text) { |
| 204 | if (! editTestCase) |
| 205 | return; |
| 206 | |
| 207 | editTestCase->setTimeLimit(text.toInt()); |
| 208 | } |
| 209 | |
| 210 | void TestCaseEditWidget::memoryLimitChanged(const QString &text) { |
| 211 | if (! editTestCase) |
nothing calls this directly
no test coverage detected