| 72 | auto Task::getGraderFilesName() const -> const QStringList & { return graderFilesName; } |
| 73 | |
| 74 | void Task::setProblemTitle(const QString &title) { |
| 75 | bool changed = problemTitle != title; |
| 76 | problemTitle = title; |
| 77 | |
| 78 | if (changed) |
| 79 | emit problemTitleChanged(title); |
| 80 | } |
| 81 | |
| 82 | void Task::setSubFolderCheck(bool check) { subFolderCheck = check; } |
| 83 |
no outgoing calls
no test coverage detected