From 4831be0cfd86bc01c7cc313276845554b5e35b10 Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Mon, 4 Jun 2012 11:22:29 +1000 Subject: Fix return value from new methods GetWhitespaceChars and GetPunctuationChars. --- include/Scintilla.iface | 4 ++-- 1 file 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(,) -- cgit v1.2.3