Ignore:
Timestamp:
Dec 9, 2010, 2:51:55 PM (14 years ago)
Author:
george
Message:
  • Upraveno: Obslužné funkce kontextového menu přesunuty do samostatné jednotky.
Location:
Docking/CoolDocking/Demo
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Docking/CoolDocking/Demo

    • Property svn:ignore
      •  

        old new  
        11lib
        22Demo.exe
         3heaptrclog.trc
  • Docking/CoolDocking/Demo/Demo.lpr

    r96 r98  
    88  {$ENDIF}{$ENDIF}
    99  Interfaces, // this includes the LCL widgetset
    10   Forms, UMainForm, UDockForm, CoolDocking, SampleDockableForm, UComponentTree;
     10  Forms, UMainForm, UDockForm, CoolDocking, SampleDockableForm, UComponentTree,
     11  FileUtil, SysUtils;
    1112
    1213{$R *.res}
    1314
     15const
     16  HeapTraceLog = 'heaptrclog.trc';
    1417begin
     18  // Heap trace
     19  DeleteFile(ExtractFilePath(ParamStr(0)) + HeapTraceLog);
     20  SetHeapTraceOutput(ExtractFilePath(ParamStr(0)) + HeapTraceLog);
     21
    1522  Application.Initialize;
    1623  Application.CreateForm(TMainForm, MainForm);
Note: See TracChangeset for help on using the changeset viewer.