summaryrefslogtreecommitdiffstats
path: root/applications/mail-mobile/FolderListModel.qml
diff options
context:
space:
mode:
Diffstat (limited to 'applications/mail-mobile/FolderListModel.qml')
-rw-r--r--applications/mail-mobile/FolderListModel.qml56
1 files changed, 0 insertions, 56 deletions
diff --git a/applications/mail-mobile/FolderListModel.qml b/applications/mail-mobile/FolderListModel.qml
deleted file mode 100644
index 82622bfb..00000000
--- a/applications/mail-mobile/FolderListModel.qml
+++ /dev/null
@@ -1,56 +0,0 @@
1/*
2 * Copyright (C) 2016 Michael Bohlender <michael.bohlender@kdemail.net>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 3 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, see <http://www.gnu.org/licenses/>.
16 */
17
18import QtQuick 2.4
19
20ListModel {
21 ListElement {
22 icon: "mail-folder-inbox"
23 name: "Inbox"
24 }
25 ListElement {
26 icon: "mail-folder-sent"
27 name: "Sent"
28 }
29 ListElement {
30 icon: "user-trash"
31 name: "Trash"
32 }
33 ListElement {
34 icon: "document-edit"
35 name: "Drafts"
36 }
37
38 ListElement {
39 icon: "folder"
40 name: "dragons"
41 }
42 ListElement {
43 icon: "folder"
44 name: "long tailed dragons"
45 }
46
47 ListElement {
48 icon: "folder"
49 name: "pim"
50 }
51 ListElement {
52 icon: "folder"
53 name: "vdg"
54 }
55
56}