summaryrefslogtreecommitdiff
path: root/examples/windoze/delphi20/multimo3/about.pas
diff options
context:
space:
mode:
Diffstat (limited to 'examples/windoze/delphi20/multimo3/about.pas')
-rw-r--r--examples/windoze/delphi20/multimo3/about.pas31
1 files changed, 0 insertions, 31 deletions
diff --git a/examples/windoze/delphi20/multimo3/about.pas b/examples/windoze/delphi20/multimo3/about.pas
deleted file mode 100644
index 44a8a55..0000000
--- a/examples/windoze/delphi20/multimo3/about.pas
+++ /dev/null
@@ -1,31 +0,0 @@
-unit About;
-
-interface
-
-uses Windows, Classes, Graphics, Forms, Controls, StdCtrls,
- Buttons, ExtCtrls;
-
-type
- TAboutBox = class(TForm)
- Panel1: TPanel;
- OKButton: TButton;
- ProgramIcon: TImage;
- ProductName: TLabel;
- Version: TLabel;
- Copyright: TLabel;
- Comments: TLabel;
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
-var
- AboutBox: TAboutBox;
-
-implementation
-
-{$R *.DFM}
-
-end.
-