Ignore:
Timestamp:
Jul 7, 2010, 4:31:10 PM (14 years ago)
Author:
Kevin Toppenberg
Message:

Upgrade to version 27

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cprs/trunk/CPRS-Chart/Templates/rTemplates.pas

    r456 r829  
    105105    CallBroker;
    106106    RPCBrokerV.Results.Delete(0);
    107     BoilerPlate.Assign(RPCBrokerV.Results);
     107    FastAssign(RPCBrokerV.Results, BoilerPlate);
    108108    RPCBrokerV.Results.Clear;
    109109  end;
     
    260260  TmpList := TStringList.Create;
    261261  try
    262     TmpList.Assign(RPCBrokerV.Results);
     262    FastAssign(RPCBrokerV.Results, TmpList);
    263263    SortByPiece(TmpList, U, 2);
    264264    MixedCaseList(TmpList);
    265     RPCBrokerV.Results.Assign(TmpList);
     265    FastAssign(TmpList, RPCBrokerV.Results);
    266266  finally
    267267    TmpList.Free;
     
    377377begin
    378378  CallV('TIU FIELD CHECK',[nil]);
    379   ResultString.Assign(RPCBrokerV.Results);
     379  FastAssign(RPCBrokerV.Results, ResultString);
    380380end;
    381381
     
    398398    CallBroker;
    399399  end;
    400   Text.Assign(RPCBrokerV.Results);
     400  FastAssign(RPCBrokerV.Results, Text);
    401401end;
    402402
     
    449449  Result := TRUE;
    450450  CallV('TIU FIELD LIST IMPORT',[nil]);
    451   ResultSet.Assign(RPCBrokerV.Results);
     451  FastAssign(RPCBrokerV.Results, ResultSet);
    452452  if ResultSet.Count < 1 then
    453453    Result := FALSE;
Note: See TracChangeset for help on using the changeset viewer.