| 30 | } |
| 31 | |
| 32 | void MacroRecorder::startRecording(ScintillaNext *editor) |
| 33 | { |
| 34 | this->editor = editor; |
| 35 | connect(editor, &ScintillaNext::macroRecord, this, &MacroRecorder::recordMacroStep); |
| 36 | |
| 37 | // We don't "own" the macro so don't delete it if it is a valid pointer |
| 38 | macro = new Macro(); |
| 39 | |
| 40 | editor->startRecord(); |
| 41 | } |
| 42 | |
| 43 | Macro *MacroRecorder::stopRecording() |
| 44 | { |
nothing calls this directly
no outgoing calls
no test coverage detected