diff options
author | Jedidiah Barber <contact@jedbarber.id.au> | 2024-11-17 17:15:53 +1300 |
---|---|---|
committer | Jedidiah Barber <contact@jedbarber.id.au> | 2024-11-17 17:15:53 +1300 |
commit | 619b3da9fbb37c57aedfc039cc813f6acf5569be (patch) | |
tree | 5577d1594900cd5e23afbc792d31ba9a40818d55 /src/fltk-help_dialogs.adb | |
parent | f5f77c762534ed15adc557009d1a645e5fd998a5 (diff) |
Refactored Finalize subprograms and made note of potential future Widget issues there in fltk.ads
Diffstat (limited to 'src/fltk-help_dialogs.adb')
-rw-r--r-- | src/fltk-help_dialogs.adb | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/fltk-help_dialogs.adb b/src/fltk-help_dialogs.adb index a98545c..fa84f01 100644 --- a/src/fltk-help_dialogs.adb +++ b/src/fltk-help_dialogs.adb @@ -149,13 +149,9 @@ package body FLTK.Help_Dialogs is procedure Finalize (This : in out Help_Dialog) is begin - if This.Void_Ptr /= Null_Pointer and then - This in Help_Dialog'Class - then + if This.Void_Ptr /= Null_Pointer and This.Needs_Dealloc then free_fl_help_dialog (This.Void_Ptr); - This.Void_Ptr := Null_Pointer; end if; - Finalize (Wrapper (This)); end Finalize; |