From 703c2e726a75cbedb43d3105f9e0b2bab9e59e77 Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Wed, 10 May 2017 20:07:16 +1000 Subject: Fixed Finalize inheritance bug --- src/fltk-widgets-groups-text_displays-text_editors.adb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/fltk-widgets-groups-text_displays-text_editors.adb') diff --git a/src/fltk-widgets-groups-text_displays-text_editors.adb b/src/fltk-widgets-groups-text_displays-text_editors.adb index 2424a7e..06564ef 100644 --- a/src/fltk-widgets-groups-text_displays-text_editors.adb +++ b/src/fltk-widgets-groups-text_displays-text_editors.adb @@ -85,11 +85,12 @@ package body FLTK.Widgets.Groups.Text_Displays.Text_Editors is procedure Finalize (This : in out Text_Editor) is begin - if This in Text_Editor and then - This.Void_Ptr /= System.Null_Address + if This.Void_Ptr /= System.Null_Address and then + This in Text_Editor'Class then This.Clear; free_fl_text_editor (This.Void_Ptr); + This.Void_Ptr := System.Null_Address; end if; Finalize (Text_Display (This)); end Finalize; -- cgit