mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-29 09:49:20 +00:00
do not clone conference info object on model creation as it blocks the creation
fix typo in cancelCreation calling
This commit is contained in:
parent
751ddb117e
commit
4a763ee99d
2 changed files with 2 additions and 2 deletions
|
|
@ -33,7 +33,7 @@ DEFINE_ABSTRACT_OBJECT(ConferenceInfoModel)
|
|||
ConferenceInfoModel::ConferenceInfoModel(const std::shared_ptr<linphone::ConferenceInfo> &conferenceInfo,
|
||||
QObject *parent)
|
||||
// TODO : remove cloning when a fix will be done in SDK (#SDK-1001 ticket)
|
||||
: mConferenceInfo(conferenceInfo->clone()) {
|
||||
: mConferenceInfo(conferenceInfo) {
|
||||
mustBeInLinphoneThread(getClassName());
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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()
|
||||
})
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue