Streams refactoring
This commit is contained in:
@@ -275,10 +275,14 @@ begin
|
||||
for j := 0 to High(AConfig[i]) do
|
||||
begin
|
||||
// Extract the specific column series
|
||||
FSourceSeries[n] := ASources[i].Series.Fields[AConfig[i][j].Key];
|
||||
var m := ASources[i].Series.IndexOf(AConfig[i][j].Key);
|
||||
if m >= 0 then
|
||||
begin
|
||||
FSourceSeries[n] := ASources[i].Series[m];
|
||||
inc(n);
|
||||
end;
|
||||
end;
|
||||
end;
|
||||
end;
|
||||
|
||||
destructor TPipeStream.Destroy;
|
||||
|
||||
Reference in New Issue
Block a user