| 236 | } |
| 237 | |
| 238 | void BazaarPlugin::parseBzrRoot(DVcsJob* job) |
| 239 | { |
| 240 | QString filename = job->dvcsCommand().at(2); |
| 241 | QString rootDirectory = job->output(); |
| 242 | QString localFilename = QFileInfo(QUrl::fromLocalFile(filename).toLocalFile()).absoluteFilePath(); |
| 243 | QString result = localFilename.mid(localFilename.indexOf(rootDirectory) + rootDirectory.length()); |
| 244 | job->setResults(QVariant::fromValue(result)); |
| 245 | } |
| 246 | |
| 247 | VcsJob* BazaarPlugin::resolve(const QList<QUrl>& localLocations, IBasicVersionControl::RecursionMode recursion) |
| 248 | { |
nothing calls this directly
no test coverage detected