1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-10 23:07:59 +00:00

- fix compilation with Qt <= 4.3

This commit is contained in:
Christophe Dumez 2009-03-28 19:55:44 +00:00
parent 00c5127ba1
commit b85ed8ff38

View File

@ -290,7 +290,7 @@ void SearchEngine::downloadFinished(int exitcode, QProcess::ExitStatus) {
if(exitcode == 0) { if(exitcode == 0) {
QString line = QString::fromUtf8(downloadProcess->readAllStandardOutput()).trimmed(); QString line = QString::fromUtf8(downloadProcess->readAllStandardOutput()).trimmed();
QStringList parts = line.split(' '); QStringList parts = line.split(' ');
if(parts.length() == 2) { if(parts.size() == 2) {
QString path = parts[0]; QString path = parts[0];
QString url = parts[1]; QString url = parts[1];
BTSession->processDownloadedFile(url, path); BTSession->processDownloadedFile(url, path);