Fix obsolescence issue. QDateTime startOfDay was added in 5.14

This commit is contained in:
LoudSnorer 2023-12-01 08:32:27 -05:00
parent 7ef8fabd39
commit 60bd9662cd

View File

@ -80,7 +80,11 @@ void gXAxis::SetDay(Day* day) {
if (!day) return;
#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
}