Deprecate QT5 support (#4751)

* Remove Qt5 Compatibility
* Remove QT compiler directives < QT6.5.3, set QT6.5.3 as minimum GC version
* Remove references to QT5 Video
Fixes #4750
This commit is contained in:
Paul Johnson
2025-12-18 13:37:55 +00:00
committed by GitHub
parent 9bb90e3737
commit c67d913f11
109 changed files with 225 additions and 922 deletions

View File

@@ -10,9 +10,7 @@ class TestCalendarData: public QObject
private slots:
void layoutCalendarEntry() {
#if QT_VERSION < 0x060000
QSKIP("Skipping test with Qt5");
#else
QList<CalendarEntry> entries = {
{ "", "", "", "", "", Qt::red, "", QTime(9, 0), 3600 },
{ "", "", "", "", "", Qt::red, "", QTime(9, 30), 3600 },
@@ -34,7 +32,6 @@ private slots:
QCOMPARE(layout[3].columnCount, 2);
QCOMPARE(layout[4].columnIndex, 1);
QCOMPARE(layout[4].columnCount, 2);
#endif
}
};