| 62 | } |
| 63 | |
| 64 | VcsJob* BazaarPlugin::add(const QList<QUrl>& localLocations, IBasicVersionControl::RecursionMode recursion) |
| 65 | { |
| 66 | auto* job = new DVcsJob(BazaarUtils::workingCopy(localLocations[0]), this); |
| 67 | job->setType(VcsJob::Add); |
| 68 | *job << "bzr" << "add"; |
| 69 | if(recursion == NonRecursive) |
| 70 | *job << "--no-recurse"; |
| 71 | *job << localLocations; |
| 72 | return job; |
| 73 | } |
| 74 | |
| 75 | VcsJob* BazaarPlugin::annotate(const QUrl& localLocation, const VcsRevision& rev) |
| 76 | { |