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