| 383 | } |
| 384 | |
| 385 | auto StoreModel::handleFileDrop(const QString &cleanedSrc, |
| 386 | const QString &cleanedDest, |
| 387 | const QFileInfo &destFileinfo, |
| 388 | Qt::DropAction action) -> bool { |
| 389 | if (destFileinfo.isDir()) { |
| 390 | return handleFileToDirDrop(cleanedSrc, cleanedDest, action); |
| 391 | } |
| 392 | return handleFileToFileDrop(cleanedSrc, cleanedDest, action); |
| 393 | } |
| 394 | |
| 395 | auto StoreModel::handleFileToDirDrop(const QString &cleanedSrc, |
| 396 | const QString &cleanedDest, |
nothing calls this directly
no outgoing calls
no test coverage detected