mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-05-02 01:56:23 +00:00
19 lines
612 B
JavaScript
19 lines
612 B
JavaScript
// =============================================================================
|
|
// `SettingsUi.qml` Logic.
|
|
// =============================================================================
|
|
|
|
.import Linphone 1.0 as Linphone
|
|
|
|
.import 'qrc:/ui/scripts/Utils/utils.js' as Utils
|
|
|
|
// =============================================================================
|
|
|
|
function cleanAvatars () {
|
|
window.attachVirtualWindow(Utils.buildDialogUri('ConfirmDialog'), {
|
|
descriptionText: qsTr('cleanAvatarsDescription'),
|
|
}, function (status) {
|
|
if (status) {
|
|
Linphone.ContactsListModel.cleanAvatars()
|
|
}
|
|
})
|
|
}
|