mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
Fix obsolescence issue. QDateTime startOfDay was added in 5.14
This commit is contained in:
parent
7ef8fabd39
commit
60bd9662cd
@ -80,7 +80,11 @@ void gXAxis::SetDay(Day* day) {
|
|||||||
if (!day) return;
|
if (!day) return;
|
||||||
|
|
||||||
#if defined (FIX_FOR_DATE_MISMATCH) // between labels on graphs and system data,
|
#if defined (FIX_FOR_DATE_MISMATCH) // between labels on graphs and system data,
|
||||||
startOfDay = QDateTime::fromMSecsSinceEpoch(day->first()).date().startOfDay().toMSecsSinceEpoch();
|
#if QT_VERSION < QT_VERSION_CHECK(5,14,0)
|
||||||
|
startOfDay = QDateTime(QDateTime::fromMSecsSinceEpoch(day->first()).date()).toMSecsSinceEpoch();
|
||||||
|
#else
|
||||||
|
startOfDay = QDateTime::fromMSecsSinceEpoch(day->first()).date().startOfDay().toMSecsSinceEpoch();
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user