source: branches/topdown/Apps/AppFileManager.pas

Last change on this file was 37, checked in by chronos, 17 months ago
  • Modified: Simplified unit names.
File size: 425 bytes
Line 
1unit AppFileManager;
2
3interface
4
5uses
6 Classes, SysUtils, Forms, Controls, Graphics, Dialogs, OsSystem;
7
8type
9
10 { TFormFileManager }
11
12 TFormFileManager = class(TFormTask)
13 procedure FormClose(Sender: TObject; var CloseAction: TCloseAction);
14 end;
15
16
17implementation
18
19{$R *.lfm}
20
21{ TFormFileManager }
22
23procedure TFormFileManager.FormClose(Sender: TObject;
24 var CloseAction: TCloseAction);
25begin
26 Terminate;
27end;
28
29end.
30
Note: See TracBrowser for help on using the repository browser.