diff options
author | Neil <nyamatongwe@gmail.com> | 2024-02-01 09:36:08 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2024-02-01 09:36:08 +1100 |
commit | 252cb0fe25a8cbbce19944033e311203e0fb07dc (patch) | |
tree | 49607a3c6cd32981b5ea53598623e706097251ff /src/Document.h | |
parent | c6b542f84e65083552e52768db7bb4c11dcd7a64 (diff) | |
download | scintilla-mirror-252cb0fe25a8cbbce19944033e311203e0fb07dc.tar.gz |
Add UndoAction class as internal type for undo actions and make Action a struct
that is used for reporting undo steps to Document.
This will allow further minimization of undo memory use.
Diffstat (limited to 'src/Document.h')
-rw-r--r-- | src/Document.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Document.h b/src/Document.h index 9f51fc719..af6bb98fd 100644 --- a/src/Document.h +++ b/src/Document.h @@ -626,7 +626,7 @@ public: position(act.position), length(act.lenData), linesAdded(linesAdded_), - text(act.data.get()), + text(act.data), line(0), foldLevelNow(Scintilla::FoldLevel::None), foldLevelPrev(Scintilla::FoldLevel::None), |