| 171 | } |
| 172 | |
| 173 | void 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 | |
| 186 | VcsJob* BazaarPlugin::move(const QUrl& localLocationSrc, const QUrl& localLocationDst) |
| 187 | { |
nothing calls this directly
no test coverage detected