| 131 | } |
| 132 | |
| 133 | void FileManagerListJob::remoteFolderSubjobFinished(KJob* job) |
| 134 | { |
| 135 | if( job && job->error() ) { |
| 136 | qCDebug(FILEMANAGER) << "error in list job:" << job->error() << job->errorString(); |
| 137 | } |
| 138 | |
| 139 | Q_ASSERT(m_remoteFolderSubjob == job); |
| 140 | m_remoteFolderSubjob = nullptr; |
| 141 | |
| 142 | handleResults(entryList); |
| 143 | entryList.clear(); |
| 144 | } |
| 145 | |
| 146 | void FileManagerListJob::handleResults(const KIO::UDSEntryList& entriesIn) |
| 147 | { |
nothing calls this directly
no test coverage detected