summaryrefslogtreecommitdiff
path: root/src/windows-editor.adb
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2017-07-28 00:29:45 +1000
committerJed Barber <jjbarber@y7mail.com>2017-07-28 00:29:45 +1000
commit79e6d87c5ed050802d9d5159f2c71f7425597dd2 (patch)
treea787e87830f0422e454c3e5ee66aa8af1c9c346c /src/windows-editor.adb
parentede7482f170d498d0a2129da6e81ff4764e366e2 (diff)
Code style change for with/use clauses
Diffstat (limited to 'src/windows-editor.adb')
-rw-r--r--src/windows-editor.adb12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/windows-editor.adb b/src/windows-editor.adb
index f8f15eb..9696174 100644
--- a/src/windows-editor.adb
+++ b/src/windows-editor.adb
@@ -1,10 +1,12 @@
-with FLTK.Widgets.Groups.Windows.Double;
-with FLTK.Widgets.Groups.Text_Displays.Text_Editors;
-with FLTK.Widgets.Menus.Menu_Bars;
-with FLTK.Widgets.Menus.Menu_Buttons;
-with FLTK.Text_Buffers;
+with
+
+ FLTK.Widgets.Groups.Windows.Double,
+ FLTK.Widgets.Groups.Text_Displays.Text_Editors,
+ FLTK.Widgets.Menus.Menu_Bars,
+ FLTK.Widgets.Menus.Menu_Buttons,
+ FLTK.Text_Buffers;
package body Windows.Editor is