summaryrefslogtreecommitdiff
path: root/src/fltk_binding/fltk-widgets-buttons-radio.ads
diff options
context:
space:
mode:
Diffstat (limited to 'src/fltk_binding/fltk-widgets-buttons-radio.ads')
-rw-r--r--src/fltk_binding/fltk-widgets-buttons-radio.ads7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/fltk_binding/fltk-widgets-buttons-radio.ads b/src/fltk_binding/fltk-widgets-buttons-radio.ads
index 3681e05..49e8259 100644
--- a/src/fltk_binding/fltk-widgets-buttons-radio.ads
+++ b/src/fltk_binding/fltk-widgets-buttons-radio.ads
@@ -7,8 +7,8 @@ package FLTK.Widgets.Buttons.Radio is
function Create
- (X, Y, W, H : Integer;
- Label : String)
+ (X, Y, W, H : in Integer;
+ Label : in String)
return Radio_Button;
@@ -18,7 +18,8 @@ private
type Radio_Button is new Button with null record;
- overriding procedure Finalize (This : in out Radio_Button);
+ overriding procedure Finalize
+ (This : in out Radio_Button);
end FLTK.Widgets.Buttons.Radio;