1
0
mirror of synced 2024-09-16 16:46:09 +00:00

Fixed warning on Destroy

This commit is contained in:
Jan Middelburg 2021-12-03 13:24:23 +01:00 committed by GitHub
parent c0ca278638
commit 2d17084724
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -38,7 +38,6 @@ type
FServiceThread: TThread;
FAllowClose: Boolean;
protected
destructor Destroy; override;
procedure DoShow; override;
procedure UpdatePredefinedControlCodes; virtual;
@ -48,6 +47,8 @@ type
property ServiceThread: TThread read FServiceThread;
public
destructor Destroy; override;
property Context: IX2ServiceContext read FContext write FContext;
property Service: IX2Service read FService write FService;
end;