| 77 | } |
| 78 | |
| 79 | ExternalScriptItem* ExternalScriptView::itemForIndex(const QModelIndex& index) const |
| 80 | { |
| 81 | if (!index.isValid()) { |
| 82 | return nullptr; |
| 83 | } |
| 84 | |
| 85 | const QModelIndex mappedIndex = m_model->mapToSource(index); |
| 86 | return static_cast<ExternalScriptItem*>(m_plugin->model()->itemFromIndex(mappedIndex)); |
| 87 | } |
| 88 | |
| 89 | void ExternalScriptView::validateActions() |
| 90 | { |