From 2aac034b614d6de39f4aee9f41dba8f2bcc63d8d Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Thu, 26 May 2016 04:35:58 +1000 Subject: In the interests of readability and consistent style... --- fltk-widgets.ads | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) (limited to 'fltk-widgets.ads') diff --git a/fltk-widgets.ads b/fltk-widgets.ads index 3cbef76..de9afdb 100644 --- a/fltk-widgets.ads +++ b/fltk-widgets.ads @@ -30,8 +30,8 @@ package FLTK.Widgets is procedure Set_Box - (W : in Widget'Class; - B : in Box_Kind); + (W : in out Widget'Class; + B : in Box_Kind); function Get_Label_Font @@ -40,8 +40,8 @@ package FLTK.Widgets is procedure Set_Label_Font - (W : in Widget'Class; - F : in Font_Kind); + (W : in out Widget'Class; + F : in Font_Kind); function Get_Label_Size @@ -50,8 +50,8 @@ package FLTK.Widgets is procedure Set_Label_Size - (W : in Widget'Class; - S : in Font_Size); + (W : in out Widget'Class; + S : in Font_Size); function Get_Label_Type @@ -60,8 +60,8 @@ package FLTK.Widgets is procedure Set_Label_Type - (W : in Widget'Class; - L : in Label_Kind); + (W : in out Widget'Class; + L : in Label_Kind); private @@ -73,7 +73,8 @@ private end record; - overriding procedure Initialize (This : in out Widget); + overriding procedure Initialize + (This : in out Widget); end FLTK.Widgets; -- cgit