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.ads | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/fltk.ads') diff --git a/src/fltk.ads b/src/fltk.ads index e686934..e0ebf1c 100644 --- a/src/fltk.ads +++ b/src/fltk.ads @@ -399,8 +399,8 @@ private -- a mess, really just all sorts of problems. type Wrapper is new Ada.Finalization.Limited_Controlled with record - Void_Ptr : Storage.Integer_Address; - Needs_Dealloc : Boolean := True; + Void_Ptr : Storage.Integer_Address := Null_Pointer; + Needs_Dealloc : Boolean := True; end record; overriding procedure Initialize -- cgit