summaryrefslogtreecommitdiffstats
path: root/app/Dialer.qml
diff options
context:
space:
mode:
authorMatt Porter <mporter@konsulko.com>2018-05-21 12:32:37 -0400
committerMatt Porter <mporter@konsulko.com>2018-05-22 11:34:02 +0000
commit87c3378a8b716b896ca0cb72ccfb2e13f748058a (patch)
treeaa2775dbd93d25ab05d7ec055e9d6868c6e886dc /app/Dialer.qml
parent361f599d0786b0b2729350a622c2a32a6a4862b5 (diff)
phone: add discrete call function parameters
Adjust the call function to accept discrete parameters for the name and phone number to dial. This prepares the app for a reworked UI where the contact model is not always used to invoke a phone call. Bug-AGL: SPEC-1435 Change-Id: I178a7eb6c4854f755abd94234a648f861d5c1326 Signed-off-by: Matt Porter <mporter@konsulko.com>
Diffstat (limited to 'app/Dialer.qml')
-rw-r--r--app/Dialer.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/Dialer.qml b/app/Dialer.qml
index f9c3e27..4720e14 100644
--- a/app/Dialer.qml
+++ b/app/Dialer.qml
@@ -57,9 +57,9 @@ Item {
}
signal showContacts
- function call(contact) {
- name.text = contact.name
- var rawNumber = contact.numbers.get(0).number
+ function call(cname, cnumber) {
+ name.text = cname
+ var rawNumber = cnumber
number.text = rawNumber.replace(/-/g, '')
callButton.checked = true
}