View Issue Details

IDProjectCategoryView StatusLast Update
0002129JEDI Dot NetJedi.System.IOpublic2004-09-30 09:42
ReporterAHUserAssigned To 
PrioritynormalSeveritymajorReproducibilityalways
Status resolvedResolutionfixed 
Summary0002129: Jedi.System.IO StoredExtended operators * and / are wrong
DescriptionThe Jedi.System.IO StoredExtended operators * and / add the values instead of multiplication and division.
Additional Informationclass operator StoredExtended.Multiply(const A: StoredExtended; const B: Extended): StoredExtended;
begin
  Result := Extended(A) * B; // replace "+" by "*"
end;

class operator StoredExtended.Divide(const A: StoredExtended; const B: Extended): StoredExtended;
begin
  Result := Extended(A) / B; // replace "-" by "/"
end;
TagsNo tags attached.

Activities

2004-09-07 03:11

 

Jedi.System.IO.zip (5,094 bytes)

marcelb

2004-09-30 09:42

manager   ~0005275

Sorry, missed this one because I didn't notice I still had a filter set. Updating in CVS now.

Issue History

Date Modified Username Field Change
2004-09-07 02:58 AHUser New Issue
2004-09-07 03:11 AHUser File Added: Jedi.System.IO.zip
2004-09-30 09:42 marcelb Note Added: 0005275
2004-09-30 09:42 marcelb Status new => resolved
2004-09-30 09:42 marcelb Resolution open => fixed
2004-09-30 09:42 marcelb Category 00 Choose category!! => Jedi.System.IO