| 180 | } |
| 181 | |
| 182 | void MacroStep::replay(ScintillaNext *editor) const |
| 183 | { |
| 184 | if (MacroStep::MessageHasString(message)) { |
| 185 | editor->sends(static_cast<int>(message), wParam, str.constBegin()); |
| 186 | } |
| 187 | else { |
| 188 | editor->send(static_cast<int>(message), wParam, lParam); |
| 189 | } |
| 190 | } |
| 191 | |
| 192 | bool MacroStep::MessageHasString(Scintilla::Message message) |
| 193 | { |
nothing calls this directly
no outgoing calls
no test coverage detected