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/rSurgery.pas

    r456 r830  
    124124begin
    125125  if (uSurgeryTitles = nil) or (AClassName <> uSurgeryTitles.ClassName) then LoadSurgeryTitles(AClassName);
    126   Dest.AddStrings(uSurgeryTitles.ShortList);
     126  FastAddStrings(uSurgeryTitles.ShortList, Dest);
    127127  if uSurgeryTitles.ShortList.Count > 0 then
    128128  begin
     
    169169       SortByPiece(TStringList(Results), U, 2);
    170170       InvertStringList(TStringList(Results));
    171        Dest.Assign(Results);
     171       FastAssign(Results, Dest);
    172172     end
    173173    else
     
    191191       InvertStringList(TStringList(Results));
    192192       SetListFMDateTime('mmm dd,yy hh:nn', TStringList(Results), U, 3);
    193        Dest.Assign(Results);
     193       FastAssign(Results, Dest);
    194194     end
    195195    else
     
    206206begin
    207207  CallV('TIU GET RECORD TEXT', [IEN]);
    208   Dest.Assign(RPCBrokerV.Results);
     208  FastAssign(RPCBrokerV.Results, Dest);
    209209end;
    210210
     
    213213begin
    214214  CallV('TIU DETAILED DISPLAY', [IEN]);
    215   Dest.Assign(RPCBrokerV.Results);
     215  FastAssign(RPCBrokerV.Results, Dest);
    216216end;
    217217
     
    226226    begin
    227227      //if Results.Count > 0 then Results.Delete(0);   //This is the value of the ShowOpTopOnSignature site parameter.
    228       Dest.Assign(Results);
     228      FastAssign(Results, Dest);
    229229    end;
    230230end;*)
     
    281281begin
    282282  CallV('ORWSR ONECASE', [NoteIEN]);
    283   Dest.Assign(RPCBrokerV.Results);
     283  FastAssign(RPCBrokerV.Results, Dest);
    284284end;
    285285
Note: See TracChangeset for help on using the changeset viewer.