diff options
author | Michael Bohlender <michael.bohlender@kdemail.net> | 2016-03-09 16:20:21 +0100 |
---|---|---|
committer | Michael Bohlender <michael.bohlender@kdemail.net> | 2016-03-09 16:20:21 +0100 |
commit | 24843b835f2ce2b4cb83bae9c0653267a24b894d (patch) | |
tree | af27f3038682188145f2bd04bf23cd04f7416e72 /components/package/contents/ui/FolderListView.qml | |
parent | 03ae386b327c093a30e0b6cc36061837c9040aca (diff) | |
download | kube-24843b835f2ce2b4cb83bae9c0653267a24b894d.tar.gz kube-24843b835f2ce2b4cb83bae9c0653267a24b894d.zip |
import as Mail -> import as KubeFramework
Diffstat (limited to 'components/package/contents/ui/FolderListView.qml')
-rw-r--r-- | components/package/contents/ui/FolderListView.qml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/package/contents/ui/FolderListView.qml b/components/package/contents/ui/FolderListView.qml index b63235bb..d78531a2 100644 --- a/components/package/contents/ui/FolderListView.qml +++ b/components/package/contents/ui/FolderListView.qml | |||
@@ -23,7 +23,7 @@ import QtQuick.Layouts 1.1 | |||
23 | import org.kde.plasma.core 2.0 as PlasmaCore | 23 | import org.kde.plasma.core 2.0 as PlasmaCore |
24 | import org.kde.plasma.components 2.0 as PlasmaComponents | 24 | import org.kde.plasma.components 2.0 as PlasmaComponents |
25 | 25 | ||
26 | import org.kube.framework.domain 1.0 as Mail | 26 | import org.kube.framework.domain 1.0 as KubeFramework |
27 | 27 | ||
28 | Item { | 28 | Item { |
29 | id: root | 29 | id: root |
@@ -58,10 +58,10 @@ Item { | |||
58 | role: "name" | 58 | role: "name" |
59 | width: treeView.width - 5 | 59 | width: treeView.width - 5 |
60 | } | 60 | } |
61 | model: Mail.FolderListModel { id: folderListModel } | 61 | model: KubeFramework.FolderListModel { id: folderListModel } |
62 | onCurrentIndexChanged: { | 62 | onCurrentIndexChanged: { |
63 | model.fetchMore(currentIndex) | 63 | model.fetchMore(currentIndex) |
64 | root.currentFolder = model.data(currentIndex, Mail.FolderListModel.DomainObject) | 64 | root.currentFolder = model.data(currentIndex, KubeFramework.FolderListModel.DomainObject) |
65 | } | 65 | } |
66 | backgroundVisible: false | 66 | backgroundVisible: false |
67 | headerVisible: false | 67 | headerVisible: false |