Skip to content

Commit 2614c0d

Browse files
committed
Remove dependency on MadExcept.
1 parent 5b7f2bd commit 2614c0d

File tree

1 file changed

+14
-19
lines changed
  • Samples/High Level/07 Text Pad with Action List

1 file changed

+14
-19
lines changed
Lines changed: 14 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,18 @@
1-
program TextPad;
2-
3-
{$R 'Galleries.res' 'Galleries.rc'}
4-
5-
uses
6-
madExcept,
7-
madLinkDisAsm,
8-
madListHardware,
9-
madListProcesses,
10-
madListModules,
1+
program TextPad;
2+
3+
{$R 'Galleries.res' 'Galleries.rc'}
4+
5+
uses
116
Forms,
127
FMain in 'FMain.pas' {FormMain},
138
RibbonMarkup in 'Ribbon\RibbonMarkup.pas';
149

15-
{$R *.res}
16-
17-
begin
18-
ReportMemoryLeaksOnShutdown := True;
19-
Application.Initialize;
20-
Application.MainFormOnTaskbar := True;
21-
Application.CreateForm(TFormMain, FormMain);
22-
Application.Run;
23-
end.
10+
{$R *.res}
11+
12+
begin
13+
ReportMemoryLeaksOnShutdown := True;
14+
Application.Initialize;
15+
Application.MainFormOnTaskbar := True;
16+
Application.CreateForm(TFormMain, FormMain);
17+
Application.Run;
18+
end.

0 commit comments

Comments
 (0)