From 2d1708472401c329ec93bf2d0496127737223164 Mon Sep 17 00:00:00 2001 From: Jan Middelburg <51588796+JanM62@users.noreply.github.com> Date: Fri, 3 Dec 2021 13:24:23 +0100 Subject: [PATCH] Fixed warning on Destroy --- X2UtService.GUIContext.Form.pas | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/X2UtService.GUIContext.Form.pas b/X2UtService.GUIContext.Form.pas index addc190..43fe566 100644 --- a/X2UtService.GUIContext.Form.pas +++ b/X2UtService.GUIContext.Form.pas @@ -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;