aboutsummaryrefslogtreecommitdiff
path: root/src/windows-about.ads
diff options
context:
space:
mode:
authorJedidiah Barber <contact@jedbarber.id.au>2025-04-15 17:23:52 +1200
committerJedidiah Barber <contact@jedbarber.id.au>2025-04-15 17:23:52 +1200
commitce287c99ae15137138e2c5674f8f84a9c8bc1609 (patch)
tree0567cbd3dddc78f64a95d60eae1ce54d46da70a1 /src/windows-about.ads
parent63c26c318a60efd20485978624352befd5f6c5ee (diff)
Constants marked constant, code style improvements, redundant with clauses removed
Diffstat (limited to 'src/windows-about.ads')
-rw-r--r--src/windows-about.ads16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/windows-about.ads b/src/windows-about.ads
index 27e655b..00b26dd 100644
--- a/src/windows-about.ads
+++ b/src/windows-about.ads
@@ -19,15 +19,15 @@ package Windows.About is
private
- type About_Window is new Window with
- record
- Picture : FLTK.Widgets.Boxes.Box;
- Heading : FLTK.Widgets.Boxes.Box;
- Blurb : FLTK.Widgets.Boxes.Box;
- Author : FLTK.Widgets.Boxes.Box;
- Dismiss : FLTK.Widgets.Buttons.Enter.Enter_Button;
- end record;
+ type About_Window is new Window with record
+ Picture : FLTK.Widgets.Boxes.Box;
+ Heading : FLTK.Widgets.Boxes.Box;
+ Blurb : FLTK.Widgets.Boxes.Box;
+ Author : FLTK.Widgets.Boxes.Box;
+ Dismiss : FLTK.Widgets.Buttons.Enter.Enter_Button;
+ end record;
end Windows.About;
+