diff options
| author | nyamatongwe <devnull@localhost> | 2012-06-04 11:22:29 +1000 |
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2012-06-04 11:22:29 +1000 |
| commit | 9489f158512060d64d04ae36113350370228d49e (patch) | |
| tree | ec3ac6ea62dd7d09b5d53fa078c849573aadbcf7 | |
| parent | dd24e21bbeadbd1c7f6954f72ebe479e7ce3dc99 (diff) | |
| download | scintilla-mirror-9489f158512060d64d04ae36113350370228d49e.tar.gz | |
Fix return value from new methods GetWhitespaceChars and GetPunctuationChars.
| -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(,) |
