| 406 | |
| 407 | |
| 408 | KDevelop::VcsJob* PerforcePlugin::edit(const QList<QUrl>& localLocations) |
| 409 | { |
| 410 | QFileInfo curFile(localLocations.front().toLocalFile()); |
| 411 | |
| 412 | auto* job = new DVcsJob(curFile.dir(), this, KDevelop::OutputJob::Verbose); |
| 413 | setEnvironmentForJob(job, curFile); |
| 414 | *job << m_perforceExecutable << "edit" << localLocations; |
| 415 | |
| 416 | return job; |
| 417 | } |
| 418 | |
| 419 | KDevelop::VcsJob* PerforcePlugin::edit(const QUrl& /*localLocation*/) |
| 420 | { |