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

Method start

plugins/bazaar/copyjob.cpp:47–56  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

45}
46
47void CopyJob::start()
48{
49 if (m_status != KDevelop::VcsJob::JobNotStarted)
50 return;
51 KIO::CopyJob* job = KIO::copy(m_source, m_destination, KIO::HideProgressInfo);
52 connect(job, &KIO::CopyJob::copyingDone, this, &CopyJob::addToVcs);
53 m_status = KDevelop::VcsJob::JobRunning;
54 m_job = job;
55 job->start();
56}
57
58bool CopyJob::doKill()
59{

Callers 1

addToVcsMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected