aboutsummaryrefslogtreecommitdiffhomepage
path: root/cocoa/ScintillaCocoa.mm
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2011-07-10 22:40:10 +1000
committernyamatongwe <devnull@localhost>2011-07-10 22:40:10 +1000
commitde586bf0f75ea0ea0c8d3846558a457c6208dc88 (patch)
tree69eeb66c5e67d42549f87aeb704ee3aba9cc37be /cocoa/ScintillaCocoa.mm
parent9a895fdf8e524734e35795536d6fb24f83209cb6 (diff)
downloadscintilla-mirror-de586bf0f75ea0ea0c8d3846558a457c6208dc88.tar.gz
Return byte length of insertion for encoding from InsertText so can be
used to underline text inserted by IME and replace correctly when the IME changes.
Diffstat (limited to 'cocoa/ScintillaCocoa.mm')
-rw-r--r--cocoa/ScintillaCocoa.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/cocoa/ScintillaCocoa.mm b/cocoa/ScintillaCocoa.mm
index c0667cf4e..196ae28e4 100644
--- a/cocoa/ScintillaCocoa.mm
+++ b/cocoa/ScintillaCocoa.mm
@@ -1672,7 +1672,7 @@ int ScintillaCocoa::InsertText(NSString* input)
AddCharUTF((char*) buffer, usedLen, false);
delete []buffer;
- return true;
+ return usedLen;
}
//--------------------------------------------------------------------------------------------------