| 190 | } |
| 191 | |
| 192 | void ExtTestCaseUpdaterDialog::timeLimitChanged(const QString &text) { |
| 193 | if (text.isEmpty()) { |
| 194 | if (editTime == MAY_EDIT) |
| 195 | timeLimit = MAY_EDIT; |
| 196 | else |
| 197 | ui->lineEditTime->setText(QString::number(defTimeLimit)); |
| 198 | } else |
| 199 | timeLimit = text.toInt(); |
| 200 | } |
| 201 | |
| 202 | void ExtTestCaseUpdaterDialog::memoryLimitChanged(const QString &text) { |
| 203 | if (text.isEmpty()) { |
nothing calls this directly
no outgoing calls
no test coverage detected