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

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Davis <phil@jankaritech.com>2022-02-22 19:49:47 +0300
committerHannah von Reth <vonreth@kde.org>2022-02-23 19:48:02 +0300
commit47822d50bc3d239131966425621b15747203cd31 (patch)
tree550fdbb2809bc02913f55c6f9378f7cb3f0a7ab8 /src/gui/folderman.cpp
parent45f992fd0977f573ada935ddac9b2507ed4242d8 (diff)
Improve poll-interval comments
Diffstat (limited to 'src/gui/folderman.cpp')
-rw-r--r--src/gui/folderman.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/folderman.cpp b/src/gui/folderman.cpp
index f92eb643f..32a9acc6b 100644
--- a/src/gui/folderman.cpp
+++ b/src/gui/folderman.cpp
@@ -145,8 +145,8 @@ FolderMan::FolderMan(QObject *parent)
_socketApi.reset(new SocketApi);
- // Set the remote poll interval fixed to 10 seconds.
- // That does not mean that it polls every 10 seconds, but it checks every 10 secs
+ // Set the remote poll interval fixed to 1 second (1000 milliseconds)
+ // That does not mean that it polls every 1 second, but it checks every 1 second
// if one of the folders is due to sync.
_etagPollTimer.setInterval(1000);
QObject::connect(&_etagPollTimer, &QTimer::timeout, this, &FolderMan::slotEtagPollTimerTimeout);