From 619b3da9fbb37c57aedfc039cc813f6acf5569be Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Sun, 17 Nov 2024 17:15:53 +1300 Subject: Refactored Finalize subprograms and made note of potential future Widget issues there in fltk.ads --- src/fltk-widgets-inputs-secret.adb | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'src/fltk-widgets-inputs-secret.adb') diff --git a/src/fltk-widgets-inputs-secret.adb b/src/fltk-widgets-inputs-secret.adb index 7fe2a39..0f56085 100644 --- a/src/fltk-widgets-inputs-secret.adb +++ b/src/fltk-widgets-inputs-secret.adb @@ -55,16 +55,20 @@ package body FLTK.Widgets.Inputs.Secret is + procedure Extra_Final + (This : in out Secret_Input) is + begin + Extra_Final (Input (This)); + end Extra_Final; + + procedure Finalize (This : in out Secret_Input) is begin - if This.Void_Ptr /= Null_Pointer and then - This in Secret_Input'Class - then + Extra_Final (This); + if This.Void_Ptr /= Null_Pointer and This.Needs_Dealloc then free_fl_secret_input (This.Void_Ptr); - This.Void_Ptr := Null_Pointer; end if; - Finalize (Input (This)); end Finalize; -- cgit