| 224 | } |
| 225 | |
| 226 | void frmProgress::dropEvent(QDropEvent *event) { |
| 227 | QList<QUrl> urlList; |
| 228 | QFileInfo info; |
| 229 | |
| 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() |
| 240 | : langBackupPassed(false), config(LibQNapi::loadConfig()) { |
nothing calls this directly
no outgoing calls
no test coverage detected