diff options
Diffstat (limited to 'tools/replacer/replacer.lpr')
-rw-r--r-- | tools/replacer/replacer.lpr | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/tools/replacer/replacer.lpr b/tools/replacer/replacer.lpr deleted file mode 100644 index f81d096866..0000000000 --- a/tools/replacer/replacer.lpr +++ /dev/null @@ -1,21 +0,0 @@ -program replacer;
-
-{$mode objfpc}{$H+}
-
-uses
- {$IFDEF UNIX}{$IFDEF UseCThreads}
- cthreads,
- {$ENDIF}{$ENDIF}
- Interfaces, // this includes the LCL widgetset
- Forms, Unit1
- { you can add units after this };
-
-{$R *.res}
-
-begin
- RequireDerivedFormResource := True;
- Application.Initialize;
- Application.CreateForm(TForm1, Form1);
- Application.Run;
-end.
-
|