| 222 | } |
| 223 | |
| 224 | const KateExternalTool *KateExternalToolsPlugin::toolForCommand(const QString &cmd) const |
| 225 | { |
| 226 | for (auto tool : m_tools) { |
| 227 | if (tool->cmdname == cmd) { |
| 228 | return tool; |
| 229 | } |
| 230 | } |
| 231 | return nullptr; |
| 232 | } |
| 233 | |
| 234 | const QList<KateExternalTool *> &KateExternalToolsPlugin::tools() const |
| 235 | { |