deprecate any qt version older than qt 6.9.3

Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
This commit is contained in:
Trial97 2026-01-07 03:04:19 +02:00
parent 250d2a87c9
commit 170d59de2a
No known key found for this signature in database
GPG key ID: 55EF5DA53DB36318
20 changed files with 76 additions and 68 deletions

View file

@ -70,7 +70,15 @@ class VersionFilterModel : public QSortFilterProxyModel {
return true;
}
void filterChanged() { invalidateFilter(); }
void filterChanged()
{
#if QT_VERSION < QT_VERSION_CHECK(6, 10, 0)
invalidateFilter();
#else
beginFilterChange();
endFilterChange();
#endif
}
private:
VersionProxyModel* m_parent;