From f419b275ee91792e08f211a588d891c4aa6bedac Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Fri, 15 Jul 2016 22:20:30 +1000 Subject: Groups and Widgets should now keep track of themselves properly, also all named access types removed --- fltk-widgets-groups-windows-single.ads | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'fltk-widgets-groups-windows-single.ads') diff --git a/fltk-widgets-groups-windows-single.ads b/fltk-widgets-groups-windows-single.ads index 1587678..07a2bca 100644 --- a/fltk-widgets-groups-windows-single.ads +++ b/fltk-widgets-groups-windows-single.ads @@ -4,12 +4,11 @@ package FLTK.Widgets.Groups.Windows.Single is type Single_Window is new Window with private; - type Single_Window_Access is access all Single_Window; function Create (X, Y, W, H : in Integer; - Label : in String) + Text : in String) return Single_Window; @@ -19,11 +18,11 @@ package FLTK.Widgets.Groups.Windows.Single is procedure Show - (S : in Single_Window); + (This : in Single_Window); procedure Flush - (S : in out Single_Window); + (This : in out Single_Window); private -- cgit