diff options
author | Neil <nyamatongwe@gmail.com> | 2024-02-15 14:17:08 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2024-02-15 14:17:08 +1100 |
commit | 38d2856d341358bf9c691157ae0ca2e8960e35df (patch) | |
tree | a1a187630421e954b65181bb2d2fb4a58d2549ff /src/Document.cxx | |
parent | a6a2fe933e0103464c1a357f987ad10e3bcf6622 (diff) | |
download | scintilla-mirror-38d2856d341358bf9c691157ae0ca2e8960e35df.tar.gz |
Perform validation of undo state when SCI_SETUNDOCURRENT called, setting status
when invalid.
Diffstat (limited to 'src/Document.cxx')
-rw-r--r-- | src/Document.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Document.cxx b/src/Document.cxx index 52081e1cd..8ab837daa 100644 --- a/src/Document.cxx +++ b/src/Document.cxx @@ -363,7 +363,7 @@ int Document::UndoSavePoint() const noexcept { return cb.UndoSavePoint(); } -void Document::SetUndoCurrent(int action) noexcept { +void Document::SetUndoCurrent(int action) { cb.SetUndoCurrent(action); } |