summaryrefslogtreecommitdiff
path: root/apps/windoze/Delphi20/swordvc/listkey.pas
diff options
context:
space:
mode:
Diffstat (limited to 'apps/windoze/Delphi20/swordvc/listkey.pas')
-rw-r--r--apps/windoze/Delphi20/swordvc/listkey.pas36
1 files changed, 0 insertions, 36 deletions
diff --git a/apps/windoze/Delphi20/swordvc/listkey.pas b/apps/windoze/Delphi20/swordvc/listkey.pas
deleted file mode 100644
index eb6587b..0000000
--- a/apps/windoze/Delphi20/swordvc/listkey.pas
+++ /dev/null
@@ -1,36 +0,0 @@
-unit ListKey;
-
-interface
-
-uses
- SwordAPI, SWKey, Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs;
-
-type
- TListKey = class(TSWKey)
- private
- protected
-
- public
- constructor Create(AOwner:TComponent); override;
- published
- end;
-
-
-procedure Register;
-
-implementation
-constructor TListKey.Create(AOwner:TComponent);
-begin
- inherited Create(AOwner);
- KeyType := 'ListKey';
-end;
-
-
-procedure Register;
-begin
- RegisterComponents('Data Access', [TListKey]);
-end;
-
-
-
-end.