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

Method successfulConnection

plugins/cmake/cmakemanager.cpp:151–160  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

149 }
150
151 void successfulConnection() {
152 auto job = new CMakeServerImportJob(project, server, this);
153 connect(job, &CMakeServerImportJob::result, this, [this, job](){
154 if (job->error() == 0) {
155 manager->integrateData(job->projectData(), job->project(), server);
156 }
157 });
158 addSubjob(job);
159 ExecuteCompositeJob::start();
160 }
161
162 void failedConnection(int code) {
163 Q_ASSERT(code > 0);

Callers

nothing calls this directly

Calls 5

integrateDataMethod · 0.80
startFunction · 0.50
errorMethod · 0.45
projectDataMethod · 0.45
projectMethod · 0.45

Tested by

no test coverage detected