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-devices-surfaces-copy.adb | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'src/fltk-devices-surfaces-copy.adb') diff --git a/src/fltk-devices-surfaces-copy.adb b/src/fltk-devices-surfaces-copy.adb index b600239..a904c42 100644 --- a/src/fltk-devices-surfaces-copy.adb +++ b/src/fltk-devices-surfaces-copy.adb @@ -68,13 +68,9 @@ package body FLTK.Devices.Surfaces.Copy is procedure Finalize (This : in out Copy_Surface) is begin - if This.Void_Ptr /= Null_Pointer and then - This in Copy_Surface'Class - then + if This.Void_Ptr /= Null_Pointer and This.Needs_Dealloc then free_fl_copy_surface (This.Void_Ptr); - This.Void_Ptr := Null_Pointer; end if; - Finalize (Surface_Device (This)); end Finalize; @@ -93,6 +89,8 @@ package body FLTK.Devices.Surfaces.Copy is end return; end Create; + pragma Inline (Create); + end Forge; -- cgit