Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Goffart <ogoffart@woboq.com>2013-08-08 18:03:57 +0400
committerOlivier Goffart <ogoffart@woboq.com>2013-08-08 18:03:57 +0400
commit6655da9d248a712d90a0d8269ca4bb0d633eb32f (patch)
tree3d934cee9d584f377792c471c3b005746ba340dd
parentcc6abfc36693666def116944467e4ebd06b40fe7 (diff)
Fix warningv1.4.0-beta1
-rw-r--r--src/mirall/folder.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mirall/folder.cpp b/src/mirall/folder.cpp
index 604dde468..decce36ff 100644
--- a/src/mirall/folder.cpp
+++ b/src/mirall/folder.cpp
@@ -239,7 +239,7 @@ void Folder::slotPollTimerTimeout()
qDebug() << "* Polling" << alias() << "for changes. Ignoring all pending events until now (time since next sync:" << (_timeSinceLastSync.elapsed() / 1000) << "s)";
_watcher->clearPendingEvents();
- if (_timeSinceLastSync.elapsed() > MirallConfigFile().forceSyncInterval()) {
+ if (quint64(_timeSinceLastSync.elapsed()) > MirallConfigFile().forceSyncInterval()) {
qDebug() << "* Force Sync now";
evaluateSync(QStringList());
} else {