View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0003858 | JEDI VCL | 00 JVCL Components | public | 2006-08-15 06:30 | 2006-08-22 07:01 |
Reporter | Werewolf | Assigned To | obones | ||
Priority | normal | Severity | major | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Product Version | Daily / GIT | ||||
Target Version | Fixed in Version | 3.30 | |||
Summary | 0003858: TJvValidators.Validate raises access violation if none ErrorIndicator assigned | ||||
Description | steps: 1) open JvValidators demo project (jvcl/examples/JvValidators/JvValidatorsDemo.dpr) 2) run application 3) click on the second button (button with caption "Use JvValidationSummary") on the main form 4) access violation is raised | ||||
Additional Information | Patch with solution uploaded | ||||
Tags | No tags attached. | ||||
2006-08-15 06:30
|
jvvalidators.patch (432 bytes)
Index: JvValidators.pas =================================================================== --- JvValidators.pas (revision 10868) +++ JvValidators.pas (working copy) @@ -728,6 +728,7 @@ for I := 0 to Controls.Count - 1 do FErrorIndicator.SetError(Controls[I], ''); // clear error indicator finally + if FErrorIndicator <> nil then FErrorIndicator.EndUpdate; Controls.Free; end; |
|
Thanks, this is now fixed in SVN |
Date Modified | Username | Field | Change |
---|---|---|---|
2006-08-15 06:30 | Werewolf | New Issue | |
2006-08-15 06:30 | Werewolf | File Added: jvvalidators.patch | |
2006-08-22 07:01 | obones | Status | new => resolved |
2006-08-22 07:01 | obones | Fixed in Version | => Daily / SVN |
2006-08-22 07:01 | obones | Resolution | open => fixed |
2006-08-22 07:01 | obones | Assigned To | => obones |
2006-08-22 07:01 | obones | Note Added: 0010000 |