diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2023-05-13 19:06:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-13 19:06:47 +0200 |
commit | d5c6a1b4d1e6d052e42366d19ffa0047168e030d (patch) | |
tree | 8ba9746a188c39003213839825552543e3f1a48f /launcher/net/HttpMetaCache.cpp | |
parent | c5aff7cc1ef43a1326bd3ce0c83e29669e2ff43f (diff) | |
parent | 6b6d6a01dc9cf05715f01e3a549740b169ef9ae3 (diff) | |
download | PrismLauncher-d5c6a1b4d1e6d052e42366d19ffa0047168e030d.tar.gz PrismLauncher-d5c6a1b4d1e6d052e42366d19ffa0047168e030d.tar.bz2 PrismLauncher-d5c6a1b4d1e6d052e42366d19ffa0047168e030d.zip |
Merge pull request #1007 from Ryex/fix/network_and_signals
Diffstat (limited to 'launcher/net/HttpMetaCache.cpp')
-rw-r--r-- | launcher/net/HttpMetaCache.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/net/HttpMetaCache.cpp b/launcher/net/HttpMetaCache.cpp index e521c9e9..689dbac9 100644 --- a/launcher/net/HttpMetaCache.cpp +++ b/launcher/net/HttpMetaCache.cpp @@ -57,7 +57,7 @@ HttpMetaCache::HttpMetaCache(QString path) : QObject(), m_index_file(path) saveBatchingTimer.setSingleShot(true); saveBatchingTimer.setTimerType(Qt::VeryCoarseTimer); - connect(&saveBatchingTimer, SIGNAL(timeout()), SLOT(SaveNow())); + connect(&saveBatchingTimer, &QTimer::timeout, this, &HttpMetaCache::SaveNow); } HttpMetaCache::~HttpMetaCache() |