| 1351 | } |
| 1352 | |
| 1353 | void GitPlugin::parseGitDiffOutput(DVcsJob* job) |
| 1354 | { |
| 1355 | VcsDiff diff; |
| 1356 | diff.setDiff(job->output()); |
| 1357 | diff.setBaseDiff(repositoryRoot(QUrl::fromLocalFile(job->directory().absolutePath()))); |
| 1358 | diff.setDepth(usePrefix()? 1 : 0); |
| 1359 | |
| 1360 | job->setResults(QVariant::fromValue(diff)); |
| 1361 | } |
| 1362 | |
| 1363 | static VcsStatusInfo::State lsfilesToState(char id) |
| 1364 | { |
nothing calls this directly
no test coverage detected