| 104 | } |
| 105 | |
| 106 | auto NetJob::getFailedActions() -> QList<NetAction*> |
| 107 | { |
| 108 | QList<NetAction*> failed; |
| 109 | for (auto index : m_failed) { |
| 110 | failed.push_back(dynamic_cast<NetAction*>(index.get())); |
| 111 | } |
| 112 | return failed; |
| 113 | } |
| 114 | |
| 115 | auto NetJob::getFailedFiles() -> QList<QString> |
| 116 | { |
no test coverage detected