summaryrefslogtreecommitdiff
path: root/fltk-widgets-inputs.ads
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-inputs.ads
parent0f28695be695a0b2e8fbfff388c61cb69cdc03af (diff)
In the interests of readability and consistent style...
Diffstat (limited to 'fltk-widgets-inputs.ads')
-rw-r--r--fltk-widgets-inputs.ads8
1 files changed, 6 insertions, 2 deletions
diff --git a/fltk-widgets-inputs.ads b/fltk-widgets-inputs.ads
index e0661f1..82a6915 100644
--- a/fltk-widgets-inputs.ads
+++ b/fltk-widgets-inputs.ads
@@ -6,7 +6,10 @@ package FLTK.Widgets.Inputs is
type Input is new Widget with private;
- function Create (X, Y, W, H : Integer; Label : String) return Input;
+ function Create
+ (X, Y, W, H : in Integer;
+ Label : in String)
+ return Input;
private
@@ -15,7 +18,8 @@ private
type Input is new Widget with null record;
- overriding procedure Finalize (This : in out Input);
+ overriding procedure Finalize
+ (This : in out Input);
end FLTK.Widgets.Inputs;