| 199 | } |
| 200 | |
| 201 | void DefaultFileAccessJobHandler::slotPutJobResult(KJob* pJob) |
| 202 | { |
| 203 | if(pJob->error() != KJob::NoError) |
| 204 | { |
| 205 | qCDebug(kdiffFileAccess) << "slotPutJobResult: pJob->error() = " << pJob->error(); |
| 206 | pJob->uiDelegate()->showErrorMessage(); |
| 207 | } |
| 208 | else |
| 209 | { |
| 210 | m_bSuccess = (m_transferredBytes == m_maxLength); // Special success condition |
| 211 | } |
| 212 | } |
| 213 | #endif |
| 214 | |
| 215 | bool DefaultFileAccessJobHandler::mkDirImp(const QString& dirName) |
nothing calls this directly
no outgoing calls
no test coverage detected