diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-02-11 10:59:59 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-02-11 10:59:59 +0100 |
commit | 85e739825f184a74f25173b9ef1f2036fea741df (patch) | |
tree | 0acc2f7277f8bf6c0906aeaef4686c32346e34d8 /applications | |
parent | e5f03361dfe42533dcca34d28d93ab0ad9efa443 (diff) | |
download | kube-85e739825f184a74f25173b9ef1f2036fea741df.tar.gz kube-85e739825f184a74f25173b9ef1f2036fea741df.zip |
Use KubeAction instead of Action
Diffstat (limited to 'applications')
-rw-r--r-- | applications/kube-mail/package/contents/ui/main.qml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/applications/kube-mail/package/contents/ui/main.qml b/applications/kube-mail/package/contents/ui/main.qml index ed8c7d17..9d341e0a 100644 --- a/applications/kube-mail/package/contents/ui/main.qml +++ b/applications/kube-mail/package/contents/ui/main.qml | |||
@@ -20,7 +20,7 @@ import QtQuick.Controls 1.3 | |||
20 | import QtQuick.Layouts 1.1 | 20 | import QtQuick.Layouts 1.1 |
21 | import org.kde.plasma.components 2.0 as PlasmaComponents | 21 | import org.kde.plasma.components 2.0 as PlasmaComponents |
22 | 22 | ||
23 | import org.kde.kube.actions 1.0 as Action | 23 | import org.kde.kube.actions 1.0 as KubeAction |
24 | 24 | ||
25 | ApplicationWindow { | 25 | ApplicationWindow { |
26 | id: app | 26 | id: app |
@@ -43,19 +43,19 @@ ApplicationWindow { | |||
43 | // } | 43 | // } |
44 | // } | 44 | // } |
45 | 45 | ||
46 | Action.Context { | 46 | KubeAction.Context { |
47 | id: "maillistcontext" | 47 | id: "maillistcontext" |
48 | property variant mail | 48 | property variant mail |
49 | mail: mailListView.currentMail | 49 | mail: mailListView.currentMail |
50 | } | 50 | } |
51 | 51 | ||
52 | Action.Action { | 52 | KubeAction.Action { |
53 | id: "markAsReadAction" | 53 | id: "markAsReadAction" |
54 | actionId: "org.kde.kube.actions.mark-as-read" | 54 | actionId: "org.kde.kube.actions.mark-as-read" |
55 | context: maillistcontext | 55 | context: maillistcontext |
56 | } | 56 | } |
57 | 57 | ||
58 | Action.Action { | 58 | KubeAction.Action { |
59 | id: "deleteAction" | 59 | id: "deleteAction" |
60 | actionId: "org.kde.kube.actions.delete" | 60 | actionId: "org.kde.kube.actions.delete" |
61 | context: maillistcontext | 61 | context: maillistcontext |