| 153 | } |
| 154 | |
| 155 | VcsJob* BazaarPlugin::log(const QUrl& localLocation, const VcsRevision& rev, long unsigned int limit) |
| 156 | { |
| 157 | auto* job = new DVcsJob(BazaarUtils::workingCopy(localLocation), this); |
| 158 | job->setType(VcsJob::Log); |
| 159 | *job << "bzr" << "log" << "--long" << "-v" << localLocation << BazaarUtils::getRevisionSpecRange(rev) << "-l" << QString::number(limit); |
| 160 | connect(job, &DVcsJob::readyForParsing, this, &BazaarPlugin::parseBzrLog); |
| 161 | return job; |
| 162 | } |
| 163 | |
| 164 | VcsJob* BazaarPlugin::log(const QUrl& localLocation, const VcsRevision& rev, const VcsRevision& limit) |
| 165 | { |