summaryrefslogtreecommitdiffstats
path: root/app/Recents.qml
diff options
context:
space:
mode:
Diffstat (limited to 'app/Recents.qml')
-rw-r--r--app/Recents.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/Recents.qml b/app/Recents.qml
index 3eafaac..5a516a1 100644
--- a/app/Recents.qml
+++ b/app/Recents.qml
@@ -24,11 +24,11 @@ Item {
id: root
function log_icon(type) {
- if (type == RecentCall.MISSED) {
+ if (type === RecentCall.MISSED) {
return './images/ic_call_missed_48px.svg'
- } else if (type == RecentCall.RECEIVED) {
+ } else if (type === RecentCall.RECEIVED) {
return './images/ic_call_received_48px.svg'
- } else if (type == RecentCall.DIALED) {
+ } else if (type === RecentCall.DIALED) {
return './images/ic_call_made_48px.svg'
}
}