diff options
author | Jed Barber <jjbarber@y7mail.com> | 2016-05-26 04:35:58 +1000 |
---|---|---|
committer | Jed Barber <jjbarber@y7mail.com> | 2016-05-26 04:35:58 +1000 |
commit | 2aac034b614d6de39f4aee9f41dba8f2bcc63d8d (patch) | |
tree | c3a06709e36cccb576dddf81614c8cddfefffb9f /fltk-widgets-buttons.adb | |
parent | 0f28695be695a0b2e8fbfff388c61cb69cdc03af (diff) |
In the interests of readability and consistent style...
Diffstat (limited to 'fltk-widgets-buttons.adb')
-rw-r--r-- | fltk-widgets-buttons.adb | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/fltk-widgets-buttons.adb b/fltk-widgets-buttons.adb index 504c73f..d74718a 100644 --- a/fltk-widgets-buttons.adb +++ b/fltk-widgets-buttons.adb @@ -10,7 +10,7 @@ package body FLTK.Widgets.Buttons is function new_fl_button (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_button, "new_fl_button"); @@ -35,7 +35,8 @@ package body FLTK.Widgets.Buttons is - procedure Finalize (This : in out Button) is + procedure Finalize + (This : in out Button) is begin if (This.Void_Ptr /= System.Null_Address) then free_fl_button (This.Void_Ptr); @@ -46,8 +47,8 @@ package body FLTK.Widgets.Buttons is function Create - (X, Y, W, H : Integer; - Label : String) + (X, Y, W, H : in Integer; + Label : in String) return Button is VP : System.Address; @@ -76,8 +77,8 @@ package body FLTK.Widgets.Buttons is procedure Set_State - (B : in Button'Class; - S : in State) is + (B : in out Button'Class; + S : in State) is begin fl_button_set_state (B.Void_Ptr, State'Pos (S)); end Set_State; @@ -86,7 +87,7 @@ package body FLTK.Widgets.Buttons is procedure Set_Only - (B : in Button'Class) is + (B : in out Button'Class) is begin fl_button_set_only (B.Void_Ptr); end Set_Only; |