View Issue Details

IDProjectCategoryView StatusLast Update
0003986JEDI VCL00 JVCL Componentspublic2006-11-06 02:13
ReporterEinWillAssigned Toobones 
PrioritynormalSeveritytrivialReproducibilityN/A
Status resolvedResolutionfixed 
Product Version3.20 
Target VersionFixed in Version3.30 
Summary0003986: Mistypes at jvdbspinedit.pas lines 226-227
DescriptionRight 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.
TagsNo tags attached.

Activities

There are no notes attached to this issue.

Issue History

Date Modified Username Field Change
2006-11-05 23:08 EinWill New Issue
2006-11-06 02:13 obones Status new => resolved
2006-11-06 02:13 obones Fixed in Version => Daily / SVN
2006-11-06 02:13 obones Resolution open => fixed
2006-11-06 02:13 obones Assigned To => obones