| 313 | } |
| 314 | |
| 315 | void ExternalScriptPlugin::executeScriptFromActionData() const |
| 316 | { |
| 317 | auto* action = qobject_cast<QAction*>(sender()); |
| 318 | Q_ASSERT(action); |
| 319 | |
| 320 | auto* item = action->data().value<ExternalScriptItem*>(); |
| 321 | Q_ASSERT(item); |
| 322 | |
| 323 | execute(item); |
| 324 | } |
| 325 | |
| 326 | void ExternalScriptPlugin::executeScriptFromContextMenu() const |
| 327 | { |