| 165 | } |
| 166 | |
| 167 | bool PerforcePlugin::parseP4fstat(const QFileInfo& curFile, OutputJob::OutputJobVerbosity verbosity) |
| 168 | { |
| 169 | QScopedPointer<DVcsJob> job(p4fstatJob(curFile, verbosity)); |
| 170 | if (job->exec() && job->status() == KDevelop::VcsJob::JobSucceeded) { |
| 171 | qCDebug(PLUGIN_PERFORCE) << "Perforce returned: " << job->output(); |
| 172 | if (!job->output().isEmpty()) |
| 173 | return true; |
| 174 | } |
| 175 | return false; |
| 176 | } |
| 177 | |
| 178 | QString PerforcePlugin::getRepositoryName(const QFileInfo& curFile) |
| 179 | { |