diff options
| author | Neil <nyamatongwe@gmail.com> | 2017-01-14 09:03:22 +1100 |
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2017-01-14 09:03:22 +1100 |
| commit | 30c4bcf29312cc170067941be9589b60155719b7 (patch) | |
| tree | a9da010aa9d79ea89f69bf7f51e9396e0d1b56f9 /include | |
| parent | 75de132ed9cd2b59d33e0a721bac285db2528949 (diff) | |
| download | scintilla-mirror-30c4bcf29312cc170067941be9589b60155719b7.tar.gz | |
Removed return type from AddSelection and SetSelection.
Diffstat (limited to 'include')
| -rw-r--r-- | include/Scintilla.iface | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 6b9a77f66..34a61321b 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -2354,10 +2354,10 @@ get bool GetSelectionEmpty=2650(,) fun void ClearSelections=2571(,) # Set a simple selection -fun int SetSelection=2572(position caret, position anchor) +fun void SetSelection=2572(position caret, position anchor) # Add a selection -fun int AddSelection=2573(position caret, position anchor) +fun void AddSelection=2573(position caret, position anchor) # Drop one selection fun void DropSelectionN=2671(int selection,) |
