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