[Pkg-owncloud-commits] [owncloud-client] 217/484: Sync engine: fix signal/slot connection
Sandro Knauß
hefee-guest at moszumanska.debian.org
Wed Dec 16 00:37:44 UTC 2015
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 0c467ef5b42ecc479f7c1a922b2e3b2e86d7d146
Author: Olivier Goffart <ogoffart at woboq.com>
Date: Fri Oct 30 13:21:34 2015 +0100
Sync engine: fix signal/slot connection
---
src/libsync/syncengine.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/libsync/syncengine.cpp b/src/libsync/syncengine.cpp
index 9bdf2cf..77c4cab 100644
--- a/src/libsync/syncengine.cpp
+++ b/src/libsync/syncengine.cpp
@@ -666,7 +666,7 @@ void SyncEngine::startSync()
_discoveryMainThread = new DiscoveryMainThread(account());
_discoveryMainThread->setParent(this);
- connect(this, SIGNAL(finished()), _discoveryMainThread, SLOT(deleteLater()));
+ connect(this, SIGNAL(finished(bool)), _discoveryMainThread, SLOT(deleteLater()));
qDebug() << "=====Server" << account()->serverVersion()
<< QString("rootEtagChangesNotOnlySubFolderEtags=%1").arg(account()->rootEtagChangesNotOnlySubFolderEtags());
if (account()->rootEtagChangesNotOnlySubFolderEtags()) {
--
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