summaryrefslogtreecommitdiffstats
path: root/views/calendar/qml/WeekEvents.qml
diff options
context:
space:
mode:
authorMinijackson <minijackson@riseup.net>2018-04-11 17:34:45 +0200
committerMinijackson <minijackson@riseup.net>2018-04-16 10:18:33 +0200
commit883c14c92bb282d401a6486b91129ddb03e1fbdf (patch)
treed645ee524b560956d5a47bd04ee45c99212151e5 /views/calendar/qml/WeekEvents.qml
parente3dcc27ac4f1cbb68182ecda2b17461aa0ee80a6 (diff)
downloadkube-883c14c92bb282d401a6486b91129ddb03e1fbdf.tar.gz
kube-883c14c92bb282d401a6486b91129ddb03e1fbdf.zip
Add missing code skipped during git "refactoring"
Diffstat (limited to 'views/calendar/qml/WeekEvents.qml')
-rw-r--r--views/calendar/qml/WeekEvents.qml93
1 files changed, 3 insertions, 90 deletions
diff --git a/views/calendar/qml/WeekEvents.qml b/views/calendar/qml/WeekEvents.qml
index 005fb19e..47afae40 100644
--- a/views/calendar/qml/WeekEvents.qml
+++ b/views/calendar/qml/WeekEvents.qml
@@ -1,93 +1,6 @@
1import QtQuick 2.7 1import QtQuick 2.7
2 2
3ListModel { 3import org.kube.framework 1.0 as Kube
4 ListElement { 4
5 events: [ 5Kube.EventTreeModel {
6 ListElement {
7 color: "#af1a6a"
8 starts: 1
9 duration: 4
10 text: "Meeting"
11 indention: 0
12 },
13 ListElement {
14 color: "#134bab"
15 starts: 9
16 duration: 5
17 text: "Sport"
18 indention: 0
19 }
20 ]
21 }
22 ListElement {
23 events: [
24 ListElement {
25 color: "#134bab"
26 starts: 9
27 duration: 5
28 text: "Sport"
29 indention: 0
30 }
31 ]
32 }
33 ListElement {
34 events: []
35 }
36 ListElement {
37 events: [
38 ListElement {
39 color: "#af1a6a"
40 starts: 1
41 duration: 4
42 indention: 0
43 text: "Meeting"
44 }
45 ]
46 }
47 ListElement {
48 events: [
49 ListElement {
50 color: "#134bab"
51 starts: 3
52 duration: 5
53 indention: 0
54 text: "Meeting"
55 },
56 ListElement {
57 color: "#af1a6a"
58 starts: 4
59 duration: 7
60 indention: 1
61 text: "Meeting2"
62 }
63 ]
64 }
65 ListElement {
66 events: [
67 ListElement {
68 color: "#134bab"
69 starts: 8
70 duration: 5
71 indention: 0
72 text: "Meeting"
73 },
74 ListElement {
75 color: "#af1a6a"
76 starts: 8
77 duration: 4
78 indention: 1
79 text: "Meeting2"
80 },
81 ListElement {
82 color: "#af1a6a"
83 starts: 9
84 duration: 7
85 indention: 2
86 text: "Meeting2"
87 }
88 ]
89 }
90 ListElement {
91 events: []
92 }
93} 6}