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-buttons-light-round.adb | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'src/fltk-widgets-buttons-light-round.adb') diff --git a/src/fltk-widgets-buttons-light-round.adb b/src/fltk-widgets-buttons-light-round.adb index 9c120d4..b0ed29a 100644 --- a/src/fltk-widgets-buttons-light-round.adb +++ b/src/fltk-widgets-buttons-light-round.adb @@ -55,16 +55,19 @@ package body FLTK.Widgets.Buttons.Light.Round is + procedure Extra_Final + (This : in out Round_Button) is + begin + Extra_Final (Light_Button (This)); + end Extra_Final; + + procedure Finalize (This : in out Round_Button) is begin - if This.Void_Ptr /= Null_Pointer and then - This in Round_Button'Class - then + if This.Void_Ptr /= Null_Pointer and This.Needs_Dealloc then free_fl_round_button (This.Void_Ptr); - This.Void_Ptr := Null_Pointer; end if; - Finalize (Light_Button (This)); end Finalize; -- cgit