MCPcopy Create free account
hub / github.com/ProgerXP/Notepad2e / PerformRedoStep

Method PerformRedoStep

scintilla/src/CellBuffer.cxx:765–773  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

763}
764
765void CellBuffer::PerformRedoStep() {
766 const Action &actionStep = uh.GetRedoStep();
767 if (actionStep.at == insertAction) {
768 BasicInsertString(actionStep.position, actionStep.data, actionStep.lenData);
769 } else if (actionStep.at == removeAction) {
770 BasicDeleteChars(actionStep.position, actionStep.lenData);
771 }
772 uh.CompletedRedoStep();
773}
774

Callers 1

RedoMethod · 0.80

Calls 1

CompletedRedoStepMethod · 0.80

Tested by

no test coverage detected