summaryrefslogtreecommitdiffstats
path: root/app/models/CallHistoryModel.qml
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/CallHistoryModel.qml')
-rw-r--r--app/models/CallHistoryModel.qml5
1 files changed, 5 insertions, 0 deletions
diff --git a/app/models/CallHistoryModel.qml b/app/models/CallHistoryModel.qml
index ee11799..a1c00b0 100644
--- a/app/models/CallHistoryModel.qml
+++ b/app/models/CallHistoryModel.qml
@@ -6,29 +6,34 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
import QtQml.Models 2.2
+import CallType 1.0
ListModel {
ListElement {
name: "Droopy"
number: "8003451234"
time: "2015-01-05 07:15"
+ type: CallType.Missed
}
ListElement {
name: "Doc"
number: "8003451234"
time: "2015-01-05 07:15"
+ type: CallType.Incoming
}
ListElement {
name: "Grumpy"
number: "8003451234"
time: "2015-01-05 07:15"
+ type: CallType.Outgoing
}
ListElement {
name: "Bashful"
number: "8003451234"
time: "2015-01-05 07:15"
+ type: CallType.Incoming
}
}