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.ads | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'src/fltk_binding/fltk-widgets-buttons.ads') diff --git a/src/fltk_binding/fltk-widgets-buttons.ads b/src/fltk_binding/fltk-widgets-buttons.ads index 63329b8..8469bcc 100644 --- a/src/fltk_binding/fltk-widgets-buttons.ads +++ b/src/fltk_binding/fltk-widgets-buttons.ads @@ -8,8 +8,8 @@ package FLTK.Widgets.Buttons is function Create - (X, Y, W, H : Integer; - Label : String) + (X, Y, W, H : in Integer; + Label : in String) return Button; @@ -19,12 +19,12 @@ package FLTK.Widgets.Buttons is procedure Set_State - (B : in Button'Class; - S : in State); + (B : in out Button'Class; + S : in State); procedure Set_Only - (B : in Button'Class); + (B : in out Button'Class); private @@ -33,7 +33,8 @@ private type Button is new Widget with null record; - overriding procedure Finalize (This : in out Button); + overriding procedure Finalize + (This : in out Button); end FLTK.Widgets.Buttons; -- cgit