diff options
author | nyamatongwe <unknown> | 2012-06-04 11:22:29 +1000 |
---|---|---|
committer | nyamatongwe <unknown> | 2012-06-04 11:22:29 +1000 |
commit | 4831be0cfd86bc01c7cc313276845554b5e35b10 (patch) | |
tree | 68bd51fb6c01f56da57de0b899bcacff0b57b9d2 /include | |
parent | 7e9e5b1e059efa957d2d7e9fa6b364706f621711 (diff) | |
download | scintilla-mirror-4831be0cfd86bc01c7cc313276845554b5e35b10.tar.gz |
Fix return value from new methods GetWhitespaceChars and GetPunctuationChars.
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 0dc9eb35a..f8ef879f1 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -1805,14 +1805,14 @@ fun void WordRightEndExtend=2442(,) set void SetWhitespaceChars=2443(, string characters) # Get the set of characters making up whitespace for when moving or selecting by word. -get void GetWhitespaceChars=2647(, stringresult characters) +get int GetWhitespaceChars=2647(, stringresult characters) # Set the set of characters making up punctuation characters # Should be called after SetWordChars. set void SetPunctuationChars=2648(, string characters) # Get the set of characters making up punctuation characters -get void GetPunctuationChars=2649(, stringresult characters) +get int GetPunctuationChars=2649(, stringresult characters) # Reset the set of characters for whitespace and word characters to the defaults. fun void SetCharsDefault=2444(,) |