build: Update Qt version

This commit is contained in:
Lars Toenning
2025-10-12 20:34:31 +02:00
parent ff45b56a06
commit b85a82f5fb
10 changed files with 27 additions and 10 deletions

View File

@@ -83,7 +83,11 @@ namespace swift::misc
connect(m_serializer, &CDataCacheSerializer::valuesLoadedFromStore, this, &CDataCache::changeValuesFromRemote,
Qt::DirectConnection);
if (!QFile::exists(revisionFileName())) { QFile(revisionFileName()).open(QFile::WriteOnly); }
if (!QFile::exists(revisionFileName()))
{
const bool res = QFile(revisionFileName()).open(QFile::WriteOnly);
SWIFT_VERIFY_X(res, Q_FUNC_INFO, "Could not open revision file");
}
m_serializer->loadFromStore({}, false, true); // load pinned values
singleShot(0, this,
[this] // only start the serializer if the main thread event loop runs