diff options
author | Li Xiaoming <lixm.fnst@cn.fujitsu.com> | 2019-09-16 11:04:24 +0800 |
---|---|---|
committer | Li Xiaoming <lixm.fnst@cn.fujitsu.com> | 2019-09-16 11:04:24 +0800 |
commit | 6318feef026436ada12a9c44a0279d198ee3ae8c (patch) | |
tree | 10903f7ac2588e7d17d37ca39e73264453d041bc /app/Dialer.qml | |
parent | 049ff63ded31c90479e3aac10aa5624b2374bae6 (diff) |
fix: Remove qml M126 warningicefish_8.99.5icefish_8.99.4icefish_8.99.3icefish_8.99.2icefish_8.99.1icefish/8.99.5icefish/8.99.4icefish/8.99.3icefish/8.99.2icefish/8.99.18.99.58.99.48.99.38.99.28.99.1
Message:
== and != may perform type coercion, use === or !== to avoid it.
Description:
The non-strict equality comparison is allowed to convert its arguments
to a common type. That can lead to unexpected results such as
' \t\r\n' == 0 being true. Use the strict equality operators === and
!== and be explicit about conversions you require.
Bug-AGL: SPEC-2814
Change-Id: I94130d38621a8775593edab63d409654dd758ef2
Signed-off-by: Li Xiaoming <lixm.fnst@cn.fujitsu.com>
Diffstat (limited to 'app/Dialer.qml')
-rw-r--r-- | app/Dialer.qml | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/app/Dialer.qml b/app/Dialer.qml index 11c190e..743c742 100644 --- a/app/Dialer.qml +++ b/app/Dialer.qml @@ -42,15 +42,15 @@ Item { } onCallStateChanged: { - if (telephony.callState == "incoming") { + if (telephony.callState === "incoming") { pbap.search(telephony.callClip) rejectButton.active = true callStateLabel.text = "Incoming call from " + telephony.callClip - } else if (telephony.callState == "dialing") { + } else if (telephony.callState === "dialing") { callStateLabel.text = "Dialing " + telephony.callColp - } else if (telephony.callState == "active") { + } else if (telephony.callState === "active") { rejectButton.active = false - } else if (telephony.callState == "disconnected") { + } else if (telephony.callState === "disconnected") { pbap.refreshCalls(100); rejectButton.active = false callButton.checked = false @@ -63,10 +63,10 @@ Item { target: pbap onSearchResults: { - if (name != "Not Found") { - if (telephony.callState == "incoming") { + if (name !== "Not Found") { + if (telephony.callState === "incoming") { callStateLabel.text = "Incoming call from " + name - } else if (telephony.callState == "dialing") { + } else if (telephony.callState === "dialing") { callStateLabel.text = "Dialing " + name } } @@ -150,7 +150,7 @@ Item { Layout.alignment: Qt.AlignHCenter onImage: './images/HMI_Phone_Hangup.svg' offImage: './images/HMI_Phone_Call.svg' - property var active: (number.text.length > 0) || (telephony.callState == "incoming") || (telephony.callState == "active") + property var active: (number.text.length > 0) || (telephony.callState === "incoming") || (telephony.callState === "active") opacity: active ? 1 : 0.25 onCheckedChanged: { @@ -163,7 +163,7 @@ Item { var contact = {'name': name.text, 'number': number.text} if (contact.name === '') contact.name = 'Unknown' - if (telephony.callState == "incoming") { + if (telephony.callState === "incoming") { telephony.answer() } else { pbap.search(number.text) |