From d3b6a05cf266af9d426e9756a1b2deafdbca35fe Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Tue, 9 May 2017 13:52:31 +1000 Subject: Changed Integer_Input package name --- src/fltk-widgets-inputs-int.ads | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 src/fltk-widgets-inputs-int.ads (limited to 'src/fltk-widgets-inputs-int.ads') diff --git a/src/fltk-widgets-inputs-int.ads b/src/fltk-widgets-inputs-int.ads deleted file mode 100644 index e8d1184..0000000 --- a/src/fltk-widgets-inputs-int.ads +++ /dev/null @@ -1,35 +0,0 @@ - - -package FLTK.Widgets.Inputs.Int is - - - type Integer_Input is new Input with private; - - - function Create - (X, Y, W, H : in Integer; - Text : in String) - return Integer_Input; - - - function Get_Value - (This : in Integer_Input) - return Integer; - - - procedure Draw - (This : in out Integer_Input); - - -private - - - type Integer_Input is new Input with null record; - - - overriding procedure Finalize - (This : in out Integer_Input); - - -end FLTK.Widgets.Inputs.Int; - -- cgit