aboutsummaryrefslogtreecommitdiffhomepage
path: root/call
diff options
context:
space:
mode:
Diffstat (limited to 'call')
-rw-r--r--call/ScintillaCall.cxx8
1 files changed, 8 insertions, 0 deletions
diff --git a/call/ScintillaCall.cxx b/call/ScintillaCall.cxx
index 64c9728e2..32855b9be 100644
--- a/call/ScintillaCall.cxx
+++ b/call/ScintillaCall.cxx
@@ -1259,6 +1259,14 @@ ChangeHistoryOption ScintillaCall::ChangeHistory() {
return static_cast<Scintilla::ChangeHistoryOption>(Call(Message::GetChangeHistory));
}
+void ScintillaCall::SetSelectionUndoHistory(bool selectionUndoHistory) {
+ Call(Message::SetSelectionUndoHistory, selectionUndoHistory);
+}
+
+bool ScintillaCall::SelectionUndoHistory() {
+ return Call(Message::GetSelectionUndoHistory);
+}
+
Line ScintillaCall::FirstVisibleLine() {
return Call(Message::GetFirstVisibleLine);
}