| 219 | } |
| 220 | |
| 221 | VcsJob* BazaarPlugin::remove(const QList<QUrl>& localLocations) |
| 222 | { |
| 223 | auto* job = new DVcsJob(BazaarUtils::workingCopy(localLocations[0]), this); |
| 224 | job->setType(VcsJob::JobType::Remove); |
| 225 | *job << "bzr" << "remove" << localLocations; |
| 226 | return job; |
| 227 | } |
| 228 | |
| 229 | VcsJob* BazaarPlugin::repositoryLocation(const QUrl& localLocation) |
| 230 | { |