From kde-commits Fri Jan 31 21:20:47 2014 From: Montel Laurent Date: Fri, 31 Jan 2014 21:20:47 +0000 To: kde-commits Subject: [kdepim] pimcommon/storageservice/dropbox: Return QNetworkReply Message-Id: X-MARC-Message: https://marc.info/?l=kde-commits&m=139120325615222 Git commit 6b9b989d4b6d5ecaee643564df272d78399e904c by Montel Laurent. Committed on 31/01/2014 at 21:20. Pushed by mlaurent into branch 'master'. Return QNetworkReply M +1 -1 pimcommon/storageservice/dropbox/dropboxstorageservice.cpp http://commits.kde.org/kdepim/6b9b989d4b6d5ecaee643564df272d78399e904c diff --git a/pimcommon/storageservice/dropbox/dropboxstorageservice.cpp b/p= imcommon/storageservice/dropbox/dropboxstorageservice.cpp index b595ce6..cd65e9e 100644 --- a/pimcommon/storageservice/dropbox/dropboxstorageservice.cpp +++ b/pimcommon/storageservice/dropbox/dropboxstorageservice.cpp @@ -254,7 +254,7 @@ void DropBoxStorageService::storageServicedownloadFile(= const QString &name, cons connect(job, SIGNAL(actionFailed(QString)), SLOT(slotActionFailed(= QString))); connect(job, SIGNAL(downLoadFileFailed(QString)), this, SLOT(slotD= ownLoadFileFailed(QString))); connect(job, SIGNAL(uploadDownloadFileProgress(qint64,qint64)), SL= OT(slotuploadDownloadFileProgress(qint64,qint64))); - job->downloadFile(name, fileId, destination); + mDownloadReply =3D job->downloadFile(name, fileId, destination); } } =