clang-format

Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
This commit is contained in:
Trial97 2024-06-25 11:13:15 +03:00 committed by Rachel Powers
parent cf319649f9
commit 474effe7c7
No known key found for this signature in database
GPG key ID: E10E321EB160949B
6 changed files with 74 additions and 52 deletions

View file

@ -254,8 +254,9 @@ void VersionList::setupAddedVersion(const int row, const Version::Ptr& version)
connect(version.get(), &Version::requiresChanged, this,
[this, row]() { emit dataChanged(index(row), index(row), QVector<int>() << RequiresRole); });
connect(version.get(), &Version::timeChanged, this,
[this, row]() { emit dataChanged(index(row), index(row), { TimeRole, SortRole }); });
connect(version.get(), &Version::timeChanged, this, [this, row]() {
emit dataChanged(index(row), index(row), { TimeRole, SortRole });
});
connect(version.get(), &Version::typeChanged, this, [this, row]() { emit dataChanged(index(row), index(row), { TypeRole }); });
}