mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-17 11:28:07 +00:00
fix #LINQT-1915 crash when changing meeting locale
This commit is contained in:
parent
e0286fdc42
commit
11f3546ba6
1 changed files with 2 additions and 1 deletions
|
|
@ -315,7 +315,8 @@ void ConferenceInfoCore::setTimeZoneModel(TimeZoneModel *model) {
|
|||
mTimeZoneModel->getStandardTimeOffset() != model->getStandardTimeOffset() ||
|
||||
mTimeZoneModel->getTimeZone() != model->getTimeZone()) {
|
||||
|
||||
mTimeZoneModel = QSharedPointer<TimeZoneModel>(model);
|
||||
mTimeZoneModel = QSharedPointer<TimeZoneModel>(new TimeZoneModel(model->getTimeZone()));
|
||||
|
||||
emit timeZoneModelChanged();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue