From e93b9bbc02e2791f3a35b6f077fcbb8514c28aed Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Sun, 12 Jan 2025 01:14:58 +1300 Subject: Refactored draw/handle methods in Widgets hierarchy, improved docs, added a few minor method bindings here and there --- src/fltk-widgets-inputs-text-whole_number.adb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/fltk-widgets-inputs-text-whole_number.adb') 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 -- cgit