View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0003986 | JEDI VCL | 00 JVCL Components | public | 2006-11-05 23:08 | 2006-11-06 02:13 |
Reporter | EinWill | Assigned To | obones | ||
Priority | normal | Severity | trivial | Reproducibility | N/A |
Status | resolved | Resolution | fixed | ||
Product Version | 3.20 | ||||
Target Version | Fixed in Version | 3.30 | |||
Summary | 0003986: Mistypes at jvdbspinedit.pas lines 226-227 | ||||
Description | Right now it stays: ------------------------------------------------------------- if not Result and AllowNull and (Key = BackSpace) or (Key = Del) then ------------------------------------------------------------- While should be: ------------------------------------------------------------- if not Result and AllowNull and ((Key = BackSpace) or (Key = Del)) then ------------------------------------------------------------- In fact, it doesn't cause any problem right now. But it might lead us to a mistake in future. So it's better to fix it. | ||||
Tags | No tags attached. | ||||