ide: Fixed issue with format code damaging UNICODE characters #1251

git-svn-id: svn://ultimatepp.org/upp/trunk@8994 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2015-10-08 19:10:02 +00:00
parent f1aa919e12
commit e3170e454e
5 changed files with 40 additions and 41 deletions

View file

@ -193,7 +193,7 @@ void ASEnhancer::enhance(WString &line)
for (int i = 0; i < lineLength; i++)
{
char ch = line[i];
wchar ch = line[i];
// bypass whitespace
if (isWhiteSpaceX(ch))