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-buttons-light-check.ads | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'fltk-widgets-buttons-light-check.ads') diff --git a/fltk-widgets-buttons-light-check.ads b/fltk-widgets-buttons-light-check.ads index 77ac0e6..cdf9b18 100644 --- a/fltk-widgets-buttons-light-check.ads +++ b/fltk-widgets-buttons-light-check.ads @@ -7,8 +7,8 @@ package FLTK.Widgets.Buttons.Light.Check is function Create - (X, Y, W, H : Integer; - Label : String) + (X, Y, W, H : in Integer; + Label : in String) return Check_Button; @@ -18,7 +18,8 @@ private type Check_Button is new Light_Button with null record; - overriding procedure Finalize (This : in out Check_Button); + overriding procedure Finalize + (This : in out Check_Button); end FLTK.Widgets.Buttons.Light.Check; -- cgit