| 226 | } |
| 227 | |
| 228 | KDevelop::VcsJob* KDevSvnPlugin::diff2(const KDevelop::VcsLocation& src, |
| 229 | const KDevelop::VcsLocation& dst, |
| 230 | const KDevelop::VcsRevision& srcRevision, |
| 231 | const KDevelop::VcsRevision& dstRevision, |
| 232 | KDevelop::IBasicVersionControl::RecursionMode recurse) |
| 233 | { |
| 234 | auto* job = new SvnDiffJob(this); |
| 235 | job->setSource(src); |
| 236 | job->setDestination(dst); |
| 237 | job->setSrcRevision(srcRevision); |
| 238 | job->setDstRevision(dstRevision); |
| 239 | job->setRecursive((recurse == KDevelop::IBasicVersionControl::Recursive)); |
| 240 | return job; |
| 241 | } |
| 242 | |
| 243 | KDevelop::VcsJob* KDevSvnPlugin::log(const QUrl &localLocation, const KDevelop::VcsRevision& rev, unsigned long limit) |
| 244 | { |
nothing calls this directly
no test coverage detected