diff options
Diffstat (limited to 'framework/actions/action.cpp')
-rw-r--r-- | framework/actions/action.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/actions/action.cpp b/framework/actions/action.cpp index e6ba2daf..28dd5e2a 100644 --- a/framework/actions/action.cpp +++ b/framework/actions/action.cpp | |||
@@ -85,8 +85,8 @@ bool Action::ready() const | |||
85 | return ActionBroker::instance().isActionReady(mActionId, mContext); | 85 | return ActionBroker::instance().isActionReady(mActionId, mContext); |
86 | } | 86 | } |
87 | 87 | ||
88 | void Action::execute() | 88 | ActionResult Action::execute() |
89 | { | 89 | { |
90 | ActionBroker::instance().executeAction(mActionId, mContext); | 90 | return ActionBroker::instance().executeAction(mActionId, mContext); |
91 | } | 91 | } |
92 | 92 | ||