From f5f77c762534ed15adc557009d1a645e5fd998a5 Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Sat, 16 Nov 2024 10:30:34 +1300 Subject: Reworked widget init/create subprograms --- src/fltk-widgets-groups-spinners.ads | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/fltk-widgets-groups-spinners.ads') diff --git a/src/fltk-widgets-groups-spinners.ads b/src/fltk-widgets-groups-spinners.ads index 5e7bc16..245df12 100644 --- a/src/fltk-widgets-groups-spinners.ads +++ b/src/fltk-widgets-groups-spinners.ads @@ -140,7 +140,11 @@ private overriding procedure Finalize (This : in out Spinner); - + procedure Extra_Init + (This : in out Spinner; + X, Y, W, H : in Integer; + Text : in String) + with Inline; pragma Inline (Get_Background_Color); @@ -154,7 +158,6 @@ private pragma Inline (Get_Text_Size); pragma Inline (Set_Text_Size); - pragma Inline (Get_Minimum); pragma Inline (Set_Minimum); pragma Inline (Get_Maximum); @@ -167,7 +170,6 @@ private pragma Inline (Get_Value); pragma Inline (Set_Value); - pragma Inline (Draw); pragma Inline (Handle); -- cgit