diff options
Diffstat (limited to 'app/ContactsView.qml')
-rw-r--r-- | app/ContactsView.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/ContactsView.qml b/app/ContactsView.qml index 8d37590..cab8f09 100644 --- a/app/ContactsView.qml +++ b/app/ContactsView.qml @@ -37,7 +37,7 @@ Item { } } - signal call(var contact) + signal call(var cname, var cnumber) signal cancel ListView { @@ -88,7 +88,7 @@ Item { } } onClicked: { - root.call(model) + root.call(model.name, model.numbers.get(0).number) } } section.property: 'name' |