Ignore:
Timestamp:
Jun 10, 2010, 3:13:12 PM (14 years ago)
Author:
Kevin Toppenberg
Message:

update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cprs/branches/tmg-cprs/CPRS-Chart/fFrame.pas

    r735 r793  
    49734973    RPCBrokerV.Param[1].Value := 'R';
    49744974    RPCBrokerV.Param[1].ptype := literal;
    4975     RPCResult := RPCBrokerV.StrCall;   {returns 1 if available, 0 if not available}
    4976     if strtoint(RPCResult) = 1 then begin
    4977        boolTMGPatchInstalled := True;
     4975    ///RPCResult := RPCBrokerV.StrCall;   {returns 1 if available, 0 if not available}
     4976    CallBroker;
     4977    if RPCBrokerV.Results.Count>0 then begin
     4978      RPCResult := RPCBrokerV.Results.Strings[0];
     4979      boolTMGPatchInstalled := (StrToInt(RPCResult) = 1);
    49784980    end else begin
    4979        boolTMGPatchInstalled := False;
     4981      boolTMGPatchInstalled := False;
    49804982    end;
    49814983  end;
Note: See TracChangeset for help on using the changeset viewer.