linphone-desktop/tests/ui/views/NewCall.qml
2016-10-05 11:29:46 +02:00

25 lines
382 B
QML

import QtQuick 2.7
import QtQuick.Controls 2.0
import Linphone 1.0
DialogPlus {
centeredButtons: true
minimumHeight: 300
minimumWidth: 420
title: qsTr('newCallTitle')
buttons: TextButtonA {
text: qsTr('cancel')
}
Item {
anchors.fill: parent
anchors.leftMargin: 25
anchors.rightMargin: 25
SelectContact {
anchors.fill: parent
}
}
}