View Issue Details

IDProjectCategoryView StatusLast Update
0006211JEDI VCL00 JVCL Componentspublic2015-09-14 13:20
ReporterPostApAssigned ToAHUser 
PrioritynormalSeverityminorReproducibilityalways
Status resolvedResolutionfixed 
Product Version3.47 
Target VersionFixed in Version3.48 
Summary0006211: TJvSimScope.UpdateTimeSteps can be set to ZERO in Delphi IDE (XE4.1 tested)
DescriptionTJvSimScope.UpdateTimeSteps can be set to zero in IDE w/o any errors, but can't set another value.
When run, app rise a divide by zero error.

use JEDI20130630 version
Additional Informationunit JvSimScope;
procedure TJvSimScope.SetUpdateTimeSteps(const Value: Integer);
begin
  if (FUpdateTimeSteps <> Value) and (FUpdateTimeSteps > 0) then
  begin
    FUpdateTimeSteps := Value;
  end;
end;
TagsNo tags attached.

Activities

PostAp

2013-10-10 16:25

reporter   ~0020663

this code solve problem

procedure TJvSimScope.SetUpdateTimeSteps(const Value: Integer);
begin
  if (FUpdateTimeSteps <> Value) and (Value > 0) then
  begin
    FUpdateTimeSteps := Value;
  end;
end;

AHUser

2013-12-01 11:23

developer   ~0020703

Fixed in master branch.

Issue History

Date Modified Username Field Change
2013-10-10 16:21 PostAp New Issue
2013-10-10 16:25 PostAp Note Added: 0020663
2013-12-01 11:23 AHUser Note Added: 0020703
2013-12-01 11:23 AHUser Status new => resolved
2013-12-01 11:23 AHUser Fixed in Version => Daily / SVN
2013-12-01 11:23 AHUser Resolution open => fixed
2013-12-01 11:23 AHUser Assigned To => AHUser
2015-09-14 13:20 obones Fixed in Version Daily / GIT => 3.48