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

Method diff2

plugins/subversion/kdevsvnplugin.cpp:228–241  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

226}
227
228KDevelop::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
243KDevelop::VcsJob* KDevSvnPlugin::log(const QUrl &localLocation, const KDevelop::VcsRevision& rev, unsigned long limit)
244{

Callers

nothing calls this directly

Calls 5

setDestinationMethod · 0.80
setSrcRevisionMethod · 0.80
setDstRevisionMethod · 0.80
setSourceMethod · 0.45
setRecursiveMethod · 0.45

Tested by

no test coverage detected