| 694 | } |
| 695 | |
| 696 | ZepExCommand* ZepEditor::FindExCommand(const std::string& strName) |
| 697 | { |
| 698 | auto itr = m_mapExCommands.find(strName); |
| 699 | if (itr != m_mapExCommands.end()) |
| 700 | { |
| 701 | return itr->second.get(); |
| 702 | } |
| 703 | return nullptr; |
| 704 | } |
| 705 | |
| 706 | ZepExCommand* ZepEditor::FindExCommand(const StringId& Id) |
| 707 | { |
no test coverage detected