diff options
author | Jedidiah Barber <contact@jedbarber.id.au> | 2025-01-21 00:53:56 +1300 |
---|---|---|
committer | Jedidiah Barber <contact@jedbarber.id.au> | 2025-01-21 00:53:56 +1300 |
commit | f9e453e3d456514066e8ecbed9fbac93a588a0d0 (patch) | |
tree | 06587afde830fb324d5ab7372f0f1686c4fd993a /src/fltk-widgets-inputs.adb | |
parent | 67a43ef89ba41ac32b86cda7396c16fffaf691b3 (diff) |
Using the type method is now more consistent
Diffstat (limited to 'src/fltk-widgets-inputs.adb')
-rw-r--r-- | src/fltk-widgets-inputs.adb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/fltk-widgets-inputs.adb b/src/fltk-widgets-inputs.adb index 3ba8192..0d3a3fe 100644 --- a/src/fltk-widgets-inputs.adb +++ b/src/fltk-widgets-inputs.adb @@ -586,7 +586,7 @@ package body FLTK.Widgets.Inputs is - function Get_Input_Type + function Get_Kind (This : in Input) return Input_Kind is @@ -597,8 +597,8 @@ package body FLTK.Widgets.Inputs is return V; end if; end loop; - return Normal_Kind; - end Get_Input_Type; + return Normal_Field; + end Get_Kind; function Get_Shortcut_Key @@ -930,14 +930,14 @@ package body FLTK.Widgets.Inputs is package body Extra is - procedure Set_Input_Type + procedure Set_Kind (This : in out Input; To : in Input_Kind) is begin fl_input_set_input_type (This.Void_Ptr, Input_Kind_Values (To)); - end Set_Input_Type; + end Set_Kind; - pragma Inline (Set_Input_Type); + pragma Inline (Set_Kind); end Extra; |