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.ads | |
parent | 0f28695be695a0b2e8fbfff388c61cb69cdc03af (diff) |
In the interests of readability and consistent style...
Diffstat (limited to 'fltk-widgets.ads')
-rw-r--r-- | fltk-widgets.ads | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/fltk-widgets.ads b/fltk-widgets.ads index 3cbef76..de9afdb 100644 --- a/fltk-widgets.ads +++ b/fltk-widgets.ads @@ -30,8 +30,8 @@ package FLTK.Widgets is procedure Set_Box - (W : in Widget'Class; - B : in Box_Kind); + (W : in out Widget'Class; + B : in Box_Kind); function Get_Label_Font @@ -40,8 +40,8 @@ package FLTK.Widgets is procedure Set_Label_Font - (W : in Widget'Class; - F : in Font_Kind); + (W : in out Widget'Class; + F : in Font_Kind); function Get_Label_Size @@ -50,8 +50,8 @@ package FLTK.Widgets is procedure Set_Label_Size - (W : in Widget'Class; - S : in Font_Size); + (W : in out Widget'Class; + S : in Font_Size); function Get_Label_Type @@ -60,8 +60,8 @@ package FLTK.Widgets is procedure Set_Label_Type - (W : in Widget'Class; - L : in Label_Kind); + (W : in out Widget'Class; + L : in Label_Kind); private @@ -73,7 +73,8 @@ private end record; - overriding procedure Initialize (This : in out Widget); + overriding procedure Initialize + (This : in out Widget); end FLTK.Widgets; |