From 69db42de04753050fa489f523f55843ac11e9e47 Mon Sep 17 00:00:00 2001 From: Julien Wadel Date: Fri, 2 Dec 2022 17:23:58 +0100 Subject: [PATCH] erf --- linphone-app/src/components/other/date/LDateTime.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linphone-app/src/components/other/date/LDateTime.cpp b/linphone-app/src/components/other/date/LDateTime.cpp index 6ae29945d..3942a42d9 100644 --- a/linphone-app/src/components/other/date/LDateTime.cpp +++ b/linphone-app/src/components/other/date/LDateTime.cpp @@ -34,7 +34,7 @@ LDateTime::LDateTime(const QDateTime& dateTime, QObject *parent) : QObject(paren , mDateTime(dateTime){ } LDateTime::LDateTime(LDate * date, LTime * time, QObject *parent) : QObject(parent) - , mDateTime(date->getDate(), time->getTime()){ + , mDateTime(date->getDate(), time->getTime(), Qt::OffsetFromUTC ){ } LDateTime::LDateTime(const int& year, const int& month, const int& day, const int& hour, const int& minute, const int& second, QObject *parent) : QObject(parent) , mDateTime(QDate(year, month, day), QTime(hour, minute, second)){