From 30c4bcf29312cc170067941be9589b60155719b7 Mon Sep 17 00:00:00 2001 From: Neil Date: Sat, 14 Jan 2017 09:03:22 +1100 Subject: Removed return type from AddSelection and SetSelection. --- doc/ScintillaDoc.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'doc') diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 05145f4fa..d150408df 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -1536,8 +1536,8 @@ struct Sci_TextToFind { SCI_GETSELECTIONS → int
SCI_GETSELECTIONEMPTY → bool
SCI_CLEARSELECTIONS
- SCI_SETSELECTION(int caret, int anchor) → int
- SCI_ADDSELECTION(int caret, int anchor) → int
+ SCI_SETSELECTION(int caret, int anchor)
+ SCI_ADDSELECTION(int caret, int anchor)
SCI_DROPSELECTIONN(int selection)
SCI_SETMAINSELECTION(int selection)
SCI_GETMAINSELECTION → int
@@ -1667,11 +1667,11 @@ struct Sci_TextToFind { Set a single empty selection at 0 as the only selection.

- SCI_SETSELECTION(int caret, int anchor) → int
+ SCI_SETSELECTION(int caret, int anchor)
Set a single selection from anchor to caret as the only selection.

- SCI_ADDSELECTION(int caret, int anchor) → int
+ SCI_ADDSELECTION(int caret, int anchor)
Add a new selection from anchor to caret as the main selection retaining all other selections as additional selections. Since there is always at least one selection, to set a list of selections, the first selection should be -- cgit v1.2.3