diff options
author | nyamatongwe <devnull@localhost> | 2009-07-15 03:01:23 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2009-07-15 03:01:23 +0000 |
commit | 1cfa6328aa4c173c00002b9bca07d071ed8d3df3 (patch) | |
tree | 6caed9474033d4e66b4efdaba65c42e3933d8489 | |
parent | 65d66fc29e3de98ef5aecad14ae4d2daeda1cbf1 (diff) | |
download | scintilla-mirror-1cfa6328aa4c173c00002b9bca07d071ed8d3df3.tar.gz |
Changed new calls to use name 'caret' rather than 'currentPos'.
-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 d3fb10647..5367169f2 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -1952,10 +1952,10 @@ get int GetSelections=2570(,) fun void ClearSelections=2571(,) # Set a simple selection -fun int SetSelection=2572(int currentPos,int anchor) +fun int SetSelection=2572(int caret,int anchor) # Add a selection -fun int AddSelection=2573(int currentPos,int anchor) +fun int AddSelection=2573(int caret,int anchor) # Set the main selection set void SetMainSelection=2574(int selection,) |