| 230 | urlList = event->mimeData()->urls(); |
| 231 | |
| 232 | foreach (QUrl url, urlList) { |
| 233 | info.setFile(url.toLocalFile()); |
| 234 | if (!info.exists() || !info.isFile()) continue; |
| 235 | enqueueFile(url.toLocalFile()); |
| 236 | } |
| 237 | } |
| 238 | |
| 239 | GetThread::GetThread() |
nothing calls this directly
no test coverage detected