summaryrefslogtreecommitdiff
path: root/fltk-widget-group.ads
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2016-05-25 13:01:38 +1000
committerJed Barber <jjbarber@y7mail.com>2016-05-25 13:01:38 +1000
commitcbe99e357fff28fb6aa3db7bec03756385c8928c (patch)
tree2255471124999be1105e6bb71686fba79bcb4864 /fltk-widget-group.ads
parenta3a475cc6a88e7fbd5d55cbca3dd517c0d34b260 (diff)
Some more bindings
Diffstat (limited to 'fltk-widget-group.ads')
-rw-r--r--fltk-widget-group.ads12
1 files changed, 6 insertions, 6 deletions
diff --git a/fltk-widget-group.ads b/fltk-widget-group.ads
index 689d798..d71f76c 100644
--- a/fltk-widget-group.ads
+++ b/fltk-widget-group.ads
@@ -14,33 +14,33 @@ package FLTK.Widget.Group is
procedure Add
- (This : Group_Type;
+ (This : Group_Type'Class;
Item : Widget_Type'Class);
procedure Clear
- (This : Group_Type);
+ (This : Group_Type'Class);
function Find
- (This : Group_Type;
+ (This : Group_Type'Class;
Item : Widget_Type'Class)
return Index;
procedure Insert
- (This : Group_Type;
+ (This : Group_Type'Class;
Item : Widget_Type'Class;
Place : Index);
procedure Remove
- (This : Group_Type;
+ (This : Group_Type'Class;
Item : Widget_Type'Class);
procedure Remove
- (This : Group_Type;
+ (This : Group_Type'Class;
Place : Index);