Commit b9e02cb534cf32865bc652f4bfae155aefe43e18

Authored by Carlos Picanco
1 parent b74fe8d0
Exists in master

fix typo

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
units/report_reader.pas
... ... @@ -65,7 +65,7 @@ begin
65 65 if c > -1 then
66 66 if FUseRange and (FRowRange.Low <= FRowRange.High) and (FRowRange.Low > 0) then
67 67 for i := FRowRange.Low to FRowRange.High do
68   - Result.Append(ExtractDelimited(c+2, FRows[i],[#9,#10]));
  68 + Result.Append(ExtractDelimited(c+2, FRows[i],[#9,#10]))
69 69 else
70 70 for Row in FRows do
71 71 Result.Append(ExtractDelimited(c+2, Row,[#9,#10]));
... ...