diff options
author | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2009-12-10 17:17:09 +0200 |
---|---|---|
committer | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2009-12-10 17:17:09 +0200 |
commit | 7bc08bf178b46f4564828bf374ec9e0802c77c9a (patch) | |
tree | d86e774878f49faeed3516918c7b379a8a03dd9f /src | |
parent | 37ae664ae2cd4c83b3e3d6da24500ab7493bb02a (diff) | |
download | fpGUI-7bc08bf178b46f4564828bf374ec9e0802c77c9a.tar.xz |
Extra saftey checks. Nothing major.
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/fpg_hint.pas | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/fpg_hint.pas b/src/gui/fpg_hint.pas index 34fc7ca2..b3baee00 100644 --- a/src/gui/fpg_hint.pas +++ b/src/gui/fpg_hint.pas @@ -197,10 +197,11 @@ end; destructor TfpgHintWindow.Destroy; begin + T_Chrono.Enabled := False; T_Chrono.Free; FFont.Free; inherited Destroy; - uShadowForm.Destroy; + uShadowForm.Free; end; procedure TfpgHintWindow.SetPosition(aleft, atop, awidth, aheight: TfpgCoord); |