summaryrefslogtreecommitdiff
path: root/fltk-widgets-groups-windows-double.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-groups-windows-double.adb
parent0f28695be695a0b2e8fbfff388c61cb69cdc03af (diff)
In the interests of readability and consistent style...
Diffstat (limited to 'fltk-widgets-groups-windows-double.adb')
-rw-r--r--fltk-widgets-groups-windows-double.adb12
1 files changed, 7 insertions, 5 deletions
diff --git a/fltk-widgets-groups-windows-double.adb b/fltk-widgets-groups-windows-double.adb
index 4d46d7e..21eeab3 100644
--- a/fltk-widgets-groups-windows-double.adb
+++ b/fltk-widgets-groups-windows-double.adb
@@ -10,7 +10,7 @@ package body FLTK.Widgets.Groups.Windows.Double is
function new_fl_double_window
(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_double_window, "new_fl_double_window");
@@ -30,13 +30,15 @@ package body FLTK.Widgets.Groups.Windows.Double is
- procedure fl_group_end (G : in System.Address);
+ procedure fl_group_end
+ (G : in System.Address);
pragma Import (C, fl_group_end, "fl_group_end");
- procedure Finalize (This : in out Double_Window) is
+ procedure Finalize
+ (This : in out Double_Window) is
begin
if (This.Void_Ptr /= System.Null_Address) then
free_fl_double_window (This.Void_Ptr);
@@ -47,8 +49,8 @@ package body FLTK.Widgets.Groups.Windows.Double is
function Create
- (X, Y, W, H : Integer;
- Label : String)
+ (X, Y, W, H : in Integer;
+ Label : in String)
return Double_Window is
VP : System.Address;