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

Upgrading to version 27

File:
1 edited

Legend:

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

    r456 r830  
    102102begin
    103103  if uDCSummTitles = nil then LoadDCSummTitles;
    104   Dest.AddStrings(uDCSummTitles.ShortList);
     104  FastAddStrings(uDCSummTitles.ShortList, Dest);
    105105  if uDCSummTitles.ShortList.Count > 0 then
    106106  begin
     
    212212      Results[i] := x;
    213213    end; {for}
    214     Dest.Assign(Results);
     214    FastAssign(RPCBrokerV.Results, Dest);
    215215  end; {with}
    216216end;*)
     
    228228    begin
    229229      CallV('TIU DOCUMENTS BY CONTEXT', [CLS_DC_SUMM, Context, Patient.DFN, Early, Late, Person, OccLim, SortSeq, SHOW_ADDENDA]);
    230       Dest.Assign(RPCBrokerV.Results);
     230      FastAssign(RPCBrokerV.Results, Dest);
    231231    end;
    232232end;
     
    321321      //Lines := Results;   'Lines' is being overwritten by subsequent Broker calls
    322322      if not Assigned(Lines) then Lines := TStringList.Create;
    323       Lines.Assign(Results);
     323      FastAssign(RPCBrokerV.Results, Lines);
    324324      // -----------------------------------------------------------------------
    325325    end;
Note: See TracChangeset for help on using the changeset viewer.