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-valuators-sliders.adb | |
parent | 67a43ef89ba41ac32b86cda7396c16fffaf691b3 (diff) |
Using the type method is now more consistent
Diffstat (limited to 'src/fltk-widgets-valuators-sliders.adb')
-rw-r--r-- | src/fltk-widgets-valuators-sliders.adb | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/src/fltk-widgets-valuators-sliders.adb b/src/fltk-widgets-valuators-sliders.adb index 92f503f..b81729f 100644 --- a/src/fltk-widgets-valuators-sliders.adb +++ b/src/fltk-widgets-valuators-sliders.adb @@ -349,26 +349,30 @@ package body FLTK.Widgets.Valuators.Sliders is - function Get_Slider_Type + function Get_Kind (This : in Slider) - return Slider_Kind is + return Slider_Kind + is + Result : Interfaces.C.unsigned_char := fl_widget_get_type (This.Void_Ptr); begin - return Slider_Kind'Val (fl_widget_get_type (This.Void_Ptr)); + return Slider_Kind'Val (Result); exception - when Constraint_Error => raise Internal_FLTK_Error; - end Get_Slider_Type; + when Constraint_Error => raise Internal_FLTK_Error with + "Fl_Slider::type returned unexpected unsigned char value of " & + Interfaces.C.unsigned_char'Image (Result); + end Get_Kind; package body Extra is - procedure Set_Slider_Type + procedure Set_Kind (This : in out Slider; To : in Slider_Kind) is begin fl_widget_set_type (This.Void_Ptr, Slider_Kind'Pos (To)); - end Set_Slider_Type; + end Set_Kind; - pragma Inline (Set_Slider_Type); + pragma Inline (Set_Kind); end Extra; |