diff options
author | Jedidiah Barber <contact@jedbarber.id.au> | 2025-01-12 01:14:58 +1300 |
---|---|---|
committer | Jedidiah Barber <contact@jedbarber.id.au> | 2025-01-12 01:14:58 +1300 |
commit | e93b9bbc02e2791f3a35b6f077fcbb8514c28aed (patch) | |
tree | 3661530027db6809a9cbad7b2477416009e00787 /src/fltk-widgets-inputs-text-whole_number.adb | |
parent | 53aa8144851913994b963ed611cca8885b8f9a9e (diff) |
Refactored draw/handle methods in Widgets hierarchy, improved docs, added a few minor method bindings here and there
Diffstat (limited to 'src/fltk-widgets-inputs-text-whole_number.adb')
-rw-r--r-- | src/fltk-widgets-inputs-text-whole_number.adb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fltk-widgets-inputs-text-whole_number.adb b/src/fltk-widgets-inputs-text-whole_number.adb index 4d71d44..ae3ad7d 100644 --- a/src/fltk-widgets-inputs-text-whole_number.adb +++ b/src/fltk-widgets-inputs-text-whole_number.adb @@ -80,7 +80,7 @@ package body FLTK.Widgets.Inputs.Text.Whole_Number is procedure Extra_Init (This : in out Integer_Input; - X, Y, W, H : in Standard.Integer; + X, Y, W, H : in Integer; Text : in String) is begin Extra_Init (Input (This), X, Y, W, H, Text); @@ -98,7 +98,7 @@ package body FLTK.Widgets.Inputs.Text.Whole_Number is package body Forge is function Create - (X, Y, W, H : in Standard.Integer; + (X, Y, W, H : in Integer; Text : in String := "") return Integer_Input is begin |