summaryrefslogtreecommitdiff
path: root/src/fltk_binding/fltk-widgets-boxes.adb
diff options
context:
space:
mode:
Diffstat (limited to 'src/fltk_binding/fltk-widgets-boxes.adb')
-rw-r--r--src/fltk_binding/fltk-widgets-boxes.adb14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/fltk_binding/fltk-widgets-boxes.adb b/src/fltk_binding/fltk-widgets-boxes.adb
index a176c30..8f1f759 100644
--- a/src/fltk_binding/fltk-widgets-boxes.adb
+++ b/src/fltk_binding/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;