summaryrefslogtreecommitdiffstats
path: root/framework/actions/actionbroker.h
diff options
context:
space:
mode:
Diffstat (limited to 'framework/actions/actionbroker.h')
-rw-r--r--framework/actions/actionbroker.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/framework/actions/actionbroker.h b/framework/actions/actionbroker.h
index 08eac742..8f3eaeb2 100644
--- a/framework/actions/actionbroker.h
+++ b/framework/actions/actionbroker.h
@@ -24,6 +24,7 @@
24namespace Kube { 24namespace Kube {
25class Context; 25class Context;
26class ActionHandler; 26class ActionHandler;
27class ActionResult;
27 28
28class ActionBroker : public QObject 29class ActionBroker : public QObject
29{ 30{
@@ -32,7 +33,7 @@ public:
32 static ActionBroker &instance(); 33 static ActionBroker &instance();
33 34
34 bool isActionReady(const QByteArray &actionId, Context *context); 35 bool isActionReady(const QByteArray &actionId, Context *context);
35 void executeAction(const QByteArray &actionId, Context *context); 36 ActionResult executeAction(const QByteArray &actionId, Context *context);
36 37
37 void registerHandler(const QByteArray &actionId, ActionHandler *handler); 38 void registerHandler(const QByteArray &actionId, ActionHandler *handler);
38 39