yktoo / dklang

DKLang Localization Package
56 stars 14 forks source link

Duplicate case label issue #8

Closed joongtang closed 10 years ago

joongtang commented 10 years ago

Duplicate case label compile error occured in XE5 IDE case label must be UNICODE since Delphi 2009. but, #161 is ASCII label ^^ pls change to #$161

bjmillerpa commented 10 years ago

The default behavior for the DKLang language controller is to ignore non-alpha properties. Try unsetting the default option dklcoIgnoreNonAlphaProps in your language controller.

joongtang commented 10 years ago

I do not compile dklang.dproj because of Duplicate case label compile error but change #161 to #$161, compile well.

duplicatelabelissue

bjmillerpa commented 10 years ago

OK. I think I understand now what you are saying and what the problem is. I've pushed an update that changes the old test for alphabetic characters at line 1604 to now use System.Character.TCharHelper.IsLetter. Please update your source to the latest from the repository and let us know how it worked for you.

joongtang commented 10 years ago

Thanks!! ^__^