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-boxes.adb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'fltk-widgets-boxes.adb') diff --git a/fltk-widgets-boxes.adb b/fltk-widgets-boxes.adb index a176c30..8f1f759 100644 --- a/fltk-widgets-boxes.adb +++ b/fltk-widgets-boxes.adb @@ -10,17 +10,19 @@ package body FLTK.Widgets.Boxes is function new_fl_box (X, Y, W, H : in Interfaces.C.int; - L : in Interfaces.C.char_array) + Label : in Interfaces.C.char_array) return System.Address; pragma Import (C, new_fl_box, "new_fl_box"); - procedure free_fl_box (B : in System.Address); + procedure free_fl_box + (B : in System.Address); pragma Import (C, free_fl_box, "free_fl_box"); - procedure Finalize (This : in out Box) is + procedure Finalize + (This : in out Box) is begin if (This.Void_Ptr /= System.Null_Address) then free_fl_box (This.Void_Ptr); @@ -31,14 +33,13 @@ package body FLTK.Widgets.Boxes is function Create - (X, Y, W, H : Integer; - Label : String) + (X, Y, W, H : in Integer; + Label : in String) return Box is VP : System.Address; begin - VP := new_fl_box (Interfaces.C.int (X), Interfaces.C.int (Y), @@ -46,7 +47,6 @@ package body FLTK.Widgets.Boxes is Interfaces.C.int (H), Interfaces.C.To_C (Label)); return (Ada.Finalization.Limited_Controlled with Void_Ptr => VP); - end Create; -- cgit