source: branches/topdown/Apps/AppTextEditor.pas

Last change on this file was 37, checked in by chronos, 17 months ago
  • Modified: Simplified unit names.
File size: 242 bytes
Line 
1unit AppTextEditor;
2
3interface
4
5uses
6 Classes, SysUtils, Forms, Controls, Graphics, Dialogs, StdCtrls, OsSystem;
7
8type
9
10 { TFormTextEditor }
11
12 TFormTextEditor = class(TFormTask)
13 Memo1: TMemo;
14 end;
15
16
17implementation
18
19{$R *.lfm}
20
21end.
22
Note: See TracBrowser for help on using the repository browser.