From e531567c4037953cc7fd4a9f60b0a3cd85de1c70 Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Mon, 11 Jun 2001 11:31:26 +0000 Subject: Patch from Shane Caraveo at ActiveState to notify containers of Unicode code characters correctly. --- win32/ScintillaWin.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'win32/ScintillaWin.cxx') diff --git a/win32/ScintillaWin.cxx b/win32/ScintillaWin.cxx index e5c751e93..11612fb1c 100644 --- a/win32/ScintillaWin.cxx +++ b/win32/ScintillaWin.cxx @@ -1304,10 +1304,10 @@ void ScintillaWin::AddCharBytes(char b0, char b1) { UTF8FromUCS2(wcs, 1, utfval, len); utfval[len] = '\0'; AddCharUTF(utfval,len); - } else { - AddChar(b0); - AddChar(b1); - } + } else { + AddChar(b0); + AddChar(b1); + } } void ScintillaWin::GetIntelliMouseParameters() { -- cgit v1.2.3