diff options
Diffstat (limited to 'scintilla/src/Selection.h')
-rw-r--r-- | scintilla/src/Selection.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scintilla/src/Selection.h b/scintilla/src/Selection.h index fc14408..ce4e253 100644 --- a/scintilla/src/Selection.h +++ b/scintilla/src/Selection.h @@ -126,6 +126,7 @@ struct SelectionRange { SelectionPosition End() const {
return (anchor < caret) ? caret : anchor;
}
+ void Swap();
bool Trim(SelectionRange range);
// If range is all virtual collapse to start of virtual space
void MinimizeVirtualSpace();
|