[Pkg-owncloud-commits] [owncloud-client] 41/121: Delete the ComputeChecksum object when the job is finished
Sandro Knauß
hefee-guest at moszumanska.debian.org
Thu Jul 28 15:31:55 UTC 2016
This is an automated email from the git hooks/post-receive script.
hefee-guest pushed a commit to branch master
in repository owncloud-client.
commit 7fb134b4e05df834b94e82c40bc9d7f96396be65
Author: Jocelyn Turcotte <jturcotte at woboq.com>
Date: Fri Jun 17 19:08:04 2016 +0200
Delete the ComputeChecksum object when the job is finished
Each object takes almost 1k and we don't need it once the propagation is
done.
---
src/libsync/propagateupload.cpp | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/src/libsync/propagateupload.cpp b/src/libsync/propagateupload.cpp
index 5875ae7..795a2f2 100644
--- a/src/libsync/propagateupload.cpp
+++ b/src/libsync/propagateupload.cpp
@@ -234,6 +234,8 @@ void PropagateUploadFileQNAM::slotComputeContentChecksum()
connect(computeChecksum, SIGNAL(done(QByteArray,QByteArray)),
SLOT(slotComputeTransmissionChecksum(QByteArray,QByteArray)));
+ connect(computeChecksum, SIGNAL(done(QByteArray,QByteArray)),
+ computeChecksum, SLOT(deleteLater()));
computeChecksum->start(filePath);
}
@@ -268,6 +270,8 @@ void PropagateUploadFileQNAM::slotComputeTransmissionChecksum(const QByteArray&
connect(computeChecksum, SIGNAL(done(QByteArray,QByteArray)),
SLOT(slotStartUpload(QByteArray,QByteArray)));
+ connect(computeChecksum, SIGNAL(done(QByteArray,QByteArray)),
+ computeChecksum, SLOT(deleteLater()));
const QString filePath = _propagator->getFilePath(_item->_file);
computeChecksum->start(filePath);
}
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud-client.git
More information about the Pkg-owncloud-commits
mailing list