mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-04-15 05:32:21 +00:00
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:
@@ -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
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user