From f9e453e3d456514066e8ecbed9fbac93a588a0d0 Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Tue, 21 Jan 2025 00:53:56 +1300 Subject: Using the type method is now more consistent --- src/fltk-widgets-groups-spinners.ads | 8 ++++---- 1 file changed, 4 insertions(+), 4 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 6030946..3124dc2 100644 --- a/src/fltk-widgets-groups-spinners.ads +++ b/src/fltk-widgets-groups-spinners.ads @@ -134,11 +134,11 @@ package FLTK.Widgets.Groups.Spinners is (This : in out Spinner; To : in String); - function Get_Type + function Get_Kind (This : in Spinner) return Spinner_Kind; - procedure Set_Type + procedure Set_Kind (This : in out Spinner; To : in Spinner_Kind); @@ -203,8 +203,8 @@ private pragma Inline (Get_Value); pragma Inline (Set_Value); - pragma Inline (Get_Type); - pragma Inline (Set_Type); + pragma Inline (Get_Kind); + pragma Inline (Set_Kind); pragma Inline (Resize); -- cgit