| 1023 | } |
| 1024 | |
| 1025 | void ZepEditor::SetCommandText(const std::string& strCommand) |
| 1026 | { |
| 1027 | m_commandLines = string_split(strCommand, "\n\r"); |
| 1028 | if (m_commandLines.empty()) |
| 1029 | { |
| 1030 | m_commandLines.push_back(""); |
| 1031 | } |
| 1032 | m_bRegionsChanged = true; |
| 1033 | } |
| 1034 | |
| 1035 | void ZepEditor::RequestRefresh() |
| 1036 | { |
no test coverage detected