source: tags/1.5.0/AcronymDecoder.lpr

Last change on this file was 184, checked in by chronos, 6 years ago
  • Added: New menu action Tools - Document check which shows a form for checking acronyms in text documents.
  • Added: Remember dimensions of Import, Export and Settings forms.
File size: 796 bytes
Line 
1program AcronymDecoder;
2
3{$mode delphi}{$H+}
4
5uses
6 {$IFDEF UNIX}
7 cthreads, clocale,
8 {$ENDIF}
9 Interfaces, // this includes the LCL widgetset
10 Forms, UAcronym, Common, SysUtils, TemplateGenerics,
11 CoolTranslator, UFormMain, UCore, UFormCheck
12 { you can add units after this };
13
14{$R *.res}
15
16{$IFDEF DEBUG}
17const
18 HeapTraceLog = 'heaptrclog.trc';
19{$ENDIF}
20
21
22begin
23 {$IFDEF DEBUG}
24 // Heap trace
25 DeleteFile(ExtractFilePath(ParamStr(0)) + HeapTraceLog);
26 SetHeapTraceOutput(ExtractFilePath(ParamStr(0)) + HeapTraceLog);
27 {$ENDIF}
28
29 Application.Title := 'Acronym Decoder';
30 RequireDerivedFormResource := True;
31 Application.Initialize;
32 Application.CreateForm(TCore, Core);
33 Application.CreateForm(TFormMain, FormMain);
34 Application.Run;
35end.
36
Note: See TracBrowser for help on using the repository browser.