| 335 | } |
| 336 | |
| 337 | void DefaultFileAccessJobHandler::slotSimpleJobResult(KJob* pJob) |
| 338 | { |
| 339 | if(pJob->error() != KJob::NoError) |
| 340 | { |
| 341 | qCDebug(kdiffFileAccess) << "slotSimpleJobResult: pJob->error() = " << pJob->error(); |
| 342 | pJob->uiDelegate()->showErrorMessage(); |
| 343 | } |
| 344 | else |
| 345 | { |
| 346 | m_bSuccess = true; |
| 347 | } |
| 348 | } |
| 349 | |
| 350 | // Copy local or remote files. |
| 351 | bool DefaultFileAccessJobHandler::copyFile(const QString& inDest) |
nothing calls this directly
no outgoing calls
no test coverage detected