diff --git a/modules/gui/qt/dialogs/epg/EPGView.cpp b/modules/gui/qt/dialogs/epg/EPGView.cpp
index 0dda924fd9afd5b4e094ad1def8806fc099f857f..cf46c26a12440f460e8d5d6fc0e2577bb37f1496 100644
--- a/modules/gui/qt/dialogs/epg/EPGView.cpp
+++ b/modules/gui/qt/dialogs/epg/EPGView.cpp
@@ -47,7 +47,12 @@ void EPGGraphicsScene::drawBackground( QPainter *painter, const QRectF &rect)
 
     /* day change */
     QDateTime rectstarttime = epgView->startTime().addSecs( rect.left() );
+#if QT_VERSION >= QT_VERSION_CHECK(5, 14, 0)
+    QDateTime nextdaylimit = rectstarttime.date().startOfDay();
+#else
     QDateTime nextdaylimit = QDateTime( rectstarttime.date() );
+#endif
+
     QRectF area( rect );
     while( area.left() < width() )
     {