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

Method parseBzrLog

plugins/bazaar/bazaarplugin.cpp:173–184  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

171}
172
173void BazaarPlugin::parseBzrLog(DVcsJob* job)
174{
175 QVariantList result;
176 const auto parts = job->output().split(
177 QStringLiteral("------------------------------------------------------------"), Qt::SkipEmptyParts);
178 for (const QString& part : parts) {
179 auto event = BazaarUtils::parseBzrLogPart(part);
180 if (event.revision().revisionType() != VcsRevision::Invalid)
181 result.append(QVariant::fromValue(event));
182 }
183 job->setResults(result);
184}
185
186VcsJob* BazaarPlugin::move(const QUrl& localLocationSrc, const QUrl& localLocationDst)
187{

Callers

nothing calls this directly

Calls 6

outputMethod · 0.80
revisionTypeMethod · 0.80
setResultsMethod · 0.80
splitMethod · 0.45
revisionMethod · 0.45
appendMethod · 0.45

Tested by

no test coverage detected