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