Changeset 8 for trunk/VCSCommander.lpr


Ignore:
Timestamp:
May 18, 2015, 12:15:30 AM (9 years ago)
Author:
chronos
Message:
  • Added: Checkout form and ability to checkout new working copy.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/VCSCommander.lpr

    r7 r8  
    99  Interfaces, // this includes the LCL widgetset
    1010  Forms, UFormMain, UCore, Common, TemplateGenerics, UFormBrowse, UVCS,
    11   UFormFavorites, UFormSettings, UFormConsole, USubversion, UProject,
    12 UFormCommit
     11  UFormFavorites, UFormSettings, UFormConsole, USubversion, UProject, SysUtils,
     12  UFormCommit, UFormCheckout
    1313  { you can add units after this };
    1414
    1515{$R *.res}
    1616
     17{$IFDEF DEBUG}
     18const
     19  HeapTraceLog = 'heaptrclog.trc';
     20{$ENDIF}
     21
     22
    1723begin
     24  {$IFDEF DEBUG}
     25  // Heap trace
     26  DeleteFile(ExtractFilePath(ParamStr(0)) + HeapTraceLog);
     27  SetHeapTraceOutput(ExtractFilePath(ParamStr(0)) + HeapTraceLog);
     28  {$ENDIF}
     29
    1830  RequireDerivedFormResource := True;
    1931  Application.Initialize;
     
    2537  Application.CreateForm(TFormConsole, FormConsole);
    2638  Application.CreateForm(TFormCommit, FormCommit);
     39  Application.CreateForm(TFormCheckout, FormCheckout);
    2740  Application.Run;
    2841end.
Note: See TracChangeset for help on using the changeset viewer.