summaryrefslogtreecommitdiff
path: root/fltk-widgets-boxes.adb
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2016-05-26 04:35:58 +1000
committerJed Barber <jjbarber@y7mail.com>2016-05-26 04:35:58 +1000
commit2aac034b614d6de39f4aee9f41dba8f2bcc63d8d (patch)
treec3a06709e36cccb576dddf81614c8cddfefffb9f /fltk-widgets-boxes.adb
parent0f28695be695a0b2e8fbfff388c61cb69cdc03af (diff)
In the interests of readability and consistent style...
Diffstat (limited to 'fltk-widgets-boxes.adb')
-rw-r--r--fltk-widgets-boxes.adb14
1 files changed, 7 insertions, 7 deletions
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;