Changeset 16 for trunk/Units/UVCS.pas


Ignore:
Timestamp:
Jul 15, 2015, 8:32:42 AM (9 years ago)
Author:
chronos
Message:
  • Modified: Execute get log and get status silently without dialog.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Units/UVCS.pas

    r15 r16  
    6262    Password: string;
    6363    Email: string;
     64    SilentExecution: Boolean;
    6465    ExecutionOutput: TStringList;
    6566    procedure Checkout; virtual;
     
    204205  if DirectoryExistsUTF8(Path) then FormConsole.WorkingDir := Path
    205206    else FormConsole.WorkingDir := '';
    206   FormConsole.ShowModal;
     207  if SilentExecution then FormConsole.Perform
     208    else FormConsole.ShowModal;
    207209  ExecutionOutput.Assign(FormConsole.Log);
    208210end;
Note: See TracChangeset for help on using the changeset viewer.