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:
authorHannah von Reth <hannah.vonreth@owncloud.com>2021-08-25 18:00:53 +0300
committerHannah von Reth <vonreth@kde.org>2021-11-25 16:51:05 +0300
commitfee6cd11971e62dc276c50297e2526b784192682 (patch)
tree6355dd98fecd6d0f3d4856fb7062349e6e4e8220 /src/gui/updater
parenta9cf7edffcbc6ee2bf8062c27903d1ea83619b27 (diff)
Use std::chrono with QTimer::singleShot
Diffstat (limited to 'src/gui/updater')
-rw-r--r--src/gui/updater/ocupdater.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/updater/ocupdater.cpp b/src/gui/updater/ocupdater.cpp
index 9b05cb479..4639529bb 100644
--- a/src/gui/updater/ocupdater.cpp
+++ b/src/gui/updater/ocupdater.cpp
@@ -52,7 +52,7 @@ UpdaterScheduler::UpdaterScheduler(QObject *parent)
}
// at startup, do a check in any case.
- QTimer::singleShot(3000, this, &UpdaterScheduler::slotTimerFired);
+ QTimer::singleShot(3s, this, &UpdaterScheduler::slotTimerFired);
ConfigFile cfg;
auto checkInterval = cfg.updateCheckInterval();