diff options
author | Jed Barber <jjbarber@y7mail.com> | 2017-07-28 00:29:45 +1000 |
---|---|---|
committer | Jed Barber <jjbarber@y7mail.com> | 2017-07-28 00:29:45 +1000 |
commit | 79e6d87c5ed050802d9d5159f2c71f7425597dd2 (patch) | |
tree | a787e87830f0422e454c3e5ee66aa8af1c9c346c /src/windows-find.ads | |
parent | ede7482f170d498d0a2129da6e81ff4764e366e2 (diff) |
Code style change for with/use clauses
Diffstat (limited to 'src/windows-find.ads')
-rw-r--r-- | src/windows-find.ads | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/src/windows-find.ads b/src/windows-find.ads index adcb9c8..32d653e 100644 --- a/src/windows-find.ads +++ b/src/windows-find.ads @@ -1,9 +1,14 @@ -with FLTK.Widgets.Groups.Windows.Double; -private with FLTK.Widgets.Inputs; -private with FLTK.Widgets.Buttons.Enter; -private with FLTK.Widgets.Buttons.Light.Check; +with + + FLTK.Widgets.Groups.Windows.Double; + +private with + + FLTK.Widgets.Inputs, + FLTK.Widgets.Buttons.Enter, + FLTK.Widgets.Buttons.Light.Check; package Windows.Find is |