View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0005968 | JEDI VCL | 00 JVCL Components | public | 2012-08-28 12:32 | 2012-09-10 14:15 |
Reporter | DeathMAD | Assigned To | AHUser | ||
Priority | normal | Severity | trivial | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Product Version | Daily / GIT | ||||
Target Version | Fixed in Version | 3.46 | |||
Summary | 0005968: Error in TJvEditorStrings.InsertText Unicode related | ||||
Description | Adding garbage symbols in this code // line is too small -> expand it with spaces Len := Length(BegLine); if Len < X then begin SetLength(BegLine, X - 1); FillChar(BegLine[Len + 1], X - Len - 1, ' '); end; In Unicode Delphi FillChar is not correct, because addressed bytes not chars. | ||||
Additional Information | Solution. Replace code with this. Len := Length(BegLine); if Len < X then BegLine := StringOfChar(' ', X -1); | ||||
Tags | No tags attached. | ||||
Date Modified | Username | Field | Change |
---|---|---|---|
2012-08-28 12:32 | DeathMAD | New Issue | |
2012-08-28 21:30 | AHUser | Note Added: 0020132 | |
2012-08-28 21:30 | AHUser | Status | new => resolved |
2012-08-28 21:30 | AHUser | Fixed in Version | => Daily / SVN |
2012-08-28 21:30 | AHUser | Resolution | open => fixed |
2012-08-28 21:30 | AHUser | Assigned To | => AHUser |
2012-09-10 14:15 | obones | Fixed in Version | Daily / SVN => 3.46 |