diff options
author | Jed Barber <jjbarber@y7mail.com> | 2016-07-15 22:20:30 +1000 |
---|---|---|
committer | Jed Barber <jjbarber@y7mail.com> | 2016-07-15 22:20:30 +1000 |
commit | b72f41264d96f6cd9333badad82f978ecdc48fc2 (patch) | |
tree | acf583ae23932244f90e0822ef989ad64d3c9426 /src/fltk_binding/fltk-widgets-inputs.ads | |
parent | 29a95cbf34e89274d8556e6f5b9f0e8b447e94c7 (diff) |
Groups and Widgets should now keep track of themselves properly, also all named access types removed
Diffstat (limited to 'src/fltk_binding/fltk-widgets-inputs.ads')
-rw-r--r-- | src/fltk_binding/fltk-widgets-inputs.ads | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/fltk_binding/fltk-widgets-inputs.ads b/src/fltk_binding/fltk-widgets-inputs.ads index b0b8ca8..c1ebfbb 100644 --- a/src/fltk_binding/fltk-widgets-inputs.ads +++ b/src/fltk_binding/fltk-widgets-inputs.ads @@ -4,12 +4,11 @@ package FLTK.Widgets.Inputs is type Input is new Widget with private; - type Input_Access is access all Input; function Create (X, Y, W, H : in Integer; - Label : in String) + Text : in String) return Input; |