summaryrefslogtreecommitdiff
path: root/src/fltk-widgets-groups.ads
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2018-05-15 14:52:00 +1000
committerJed Barber <jjbarber@y7mail.com>2018-05-15 14:52:00 +1000
commit1cd018b440f80601f60908c2e5675413f5c77e25 (patch)
tree765af2fb514b04ec270cdddc5100ba674a8bd0a8 /src/fltk-widgets-groups.ads
parentfefc9bf753a8595eaa75ce51eb71eb553f4bbaaf (diff)
Finished and polished FLTK.Widgets.Menus, fixed some off-by-one errors in Groups
Diffstat (limited to 'src/fltk-widgets-groups.ads')
-rw-r--r--src/fltk-widgets-groups.ads4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/fltk-widgets-groups.ads b/src/fltk-widgets-groups.ads
index 609ba5d..ec0ab2a 100644
--- a/src/fltk-widgets-groups.ads
+++ b/src/fltk-widgets-groups.ads
@@ -21,6 +21,8 @@ package FLTK.Widgets.Groups is
with Implicit_Dereference => Data;
subtype Index is Positive;
+ subtype Extended_Index is Natural;
+ No_Index : constant Extended_Index := Extended_Index'First;
-- type Clip_Mode is (No_Clip, Clip);
@@ -91,7 +93,7 @@ package FLTK.Widgets.Groups is
function Find
(This : in Group;
Item : in out Widget'Class)
- return Index;
+ return Extended_Index;
function Number_Of_Children
(This : in Group)