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

Method status

plugins/bazaar/bazaarplugin.cpp:262–270  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

260}
261
262VcsJob* BazaarPlugin::status(const QList<QUrl>& localLocations, IBasicVersionControl::RecursionMode recursion)
263{
264 Q_UNUSED(recursion);
265 auto* job = new DVcsJob(BazaarUtils::workingCopy(localLocations[0]), this);
266 job->setType(VcsJob::Status);
267 *job << "bzr" << "status" << "--short" << "--no-pending" << "--no-classify" << localLocations;
268 connect(job, &DVcsJob::readyForParsing, this, &BazaarPlugin::parseBzrStatus);
269 return job;
270}
271
272void BazaarPlugin::parseBzrStatus(DVcsJob* job)
273{

Callers 1

isVersionControlledMethod · 0.45

Calls 1

setTypeMethod · 0.45

Tested by

no test coverage detected