diff options
| author | John Ehresman <unknown> | 2024-03-02 16:58:47 +1100 |
|---|---|---|
| committer | John Ehresman <unknown> | 2024-03-02 16:58:47 +1100 |
| commit | e99c07091ec1cebc855bcda42426286872d3a667 (patch) | |
| tree | 8ff2d1252c2d262393fa5f53a54e50eb97510aa1 /src/CellBuffer.h | |
| parent | 899913225fe6cc67b30be125ef222ce93b87eb22 (diff) | |
| download | scintilla-mirror-e99c07091ec1cebc855bcda42426286872d3a667.tar.gz | |
Feature [feature-requests:#1511] Add mayCoalesce argument to BeginUndoAction.
Diffstat (limited to 'src/CellBuffer.h')
| -rw-r--r-- | src/CellBuffer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CellBuffer.h b/src/CellBuffer.h index 1c598480f..3a72601a6 100644 --- a/src/CellBuffer.h +++ b/src/CellBuffer.h @@ -164,7 +164,7 @@ public: bool SetUndoCollection(bool collectUndo) noexcept; bool IsCollectingUndo() const noexcept; - void BeginUndoAction() noexcept; + void BeginUndoAction(bool mayCoalesce=false) noexcept; void EndUndoAction() noexcept; void AddUndoAction(Sci::Position token, bool mayCoalesce); void DeleteUndoHistory() noexcept; |
