| 681 | } |
| 682 | |
| 683 | void FileTransferManager::removeIncompleteFile( const FileTransfer& transfer ) |
| 684 | { |
| 685 | if (transfer.shouldSaveToFile()) |
| 686 | { |
| 687 | QFile localPath(transfer.getLocalPath()); |
| 688 | if (exists(native(localPath))) |
| 689 | { |
| 690 | localPath.remove(); |
| 691 | } |
| 692 | } |
| 693 | } |
| 694 | |
| 695 | QString FileTransferManager::encodeParams( QHash<QString, QString> params ) |
| 696 | { |
no test coverage detected