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-images-pixmaps.adb | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'src/fltk-images-pixmaps.adb') diff --git a/src/fltk-images-pixmaps.adb b/src/fltk-images-pixmaps.adb index 242ed8d..d76132f 100644 --- a/src/fltk-images-pixmaps.adb +++ b/src/fltk-images-pixmaps.adb @@ -74,13 +74,9 @@ package body FLTK.Images.Pixmaps is overriding procedure Finalize (This : in out Pixmap) is begin - if This.Void_Ptr /= Null_Pointer and then - This in Pixmap'Class - then + if This.Void_Ptr /= Null_Pointer and This.Needs_Dealloc then free_fl_pixmap (This.Void_Ptr); - This.Void_Ptr := Null_Pointer; end if; - Finalize (Image (This)); end Finalize; -- cgit