MCPcopy Create free account
hub / github.com/KDE/kdevelop / log

Method log

plugins/bazaar/bazaarplugin.cpp:155–162  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

153}
154
155VcsJob* 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
164VcsJob* BazaarPlugin::log(const QUrl& localLocation, const VcsRevision& rev, const VcsRevision& limit)
165{

Callers

nothing calls this directly

Calls 1

setTypeMethod · 0.45

Tested by

no test coverage detected