diff --git a/Linphone/model/conference/ConferenceInfoModel.cpp b/Linphone/model/conference/ConferenceInfoModel.cpp index 4542c17a1..dc5efd16c 100644 --- a/Linphone/model/conference/ConferenceInfoModel.cpp +++ b/Linphone/model/conference/ConferenceInfoModel.cpp @@ -33,7 +33,7 @@ DEFINE_ABSTRACT_OBJECT(ConferenceInfoModel) ConferenceInfoModel::ConferenceInfoModel(const std::shared_ptr &conferenceInfo, QObject *parent) // TODO : remove cloning when a fix will be done in SDK (#SDK-1001 ticket) - : mConferenceInfo(conferenceInfo->clone()) { + : mConferenceInfo(conferenceInfo) { mustBeInLinphoneThread(getClassName()); } diff --git a/Linphone/view/Page/Main/Meeting/MeetingPage.qml b/Linphone/view/Page/Main/Meeting/MeetingPage.qml index 7d327f8c3..b435d5a1c 100644 --- a/Linphone/view/Page/Main/Meeting/MeetingPage.qml +++ b/Linphone/view/Page/Main/Meeting/MeetingPage.qml @@ -321,7 +321,7 @@ AbstractMainPage { meetingSetup.conferenceInfoGui.core.save() //: "Création de la réunion en cours …" mainWindow.showLoadingPopup(qsTr("meeting_schedule_creation_in_progress"), true, function () { - meetingSetup.conferenceInfoGui.core.cancelCreation() + meetingSetup.conferenceInfoGui.core.lCancelCreation() }) } }