From 7aa86670f5d76284ae193ed1e1ed936b20a5c5fb Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Fri, 11 Nov 2016 14:45:30 +1100 Subject: Removed some superfluous with clauses --- src/windows-about.adb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/windows-about.adb') diff --git a/src/windows-about.adb b/src/windows-about.adb index a0845b8..27b8373 100644 --- a/src/windows-about.adb +++ b/src/windows-about.adb @@ -1,6 +1,5 @@ -with FLTK.Widgets; with FLTK.Widgets.Groups.Windows.Double; with FLTK.Widgets.Boxes; with FLTK.Widgets.Buttons.Enter; @@ -9,7 +8,6 @@ with FLTK.Widgets.Buttons.Enter; package body Windows.About is - package W renames FLTK.Widgets; package WD renames FLTK.Widgets.Groups.Windows.Double; package BX renames FLTK.Widgets.Boxes; package EN renames FLTK.Widgets.Buttons.Enter; @@ -61,7 +59,7 @@ package body Windows.About is This.Add (This.Picture); This.Picture.Set_Image (Logo); This.Add (This.Heading); - This.Heading.Set_Label_Size (W.Font_Size (Heading_Size)); + This.Heading.Set_Label_Size (FLTK.Widgets.Font_Size (Heading_Size)); This.Add (This.Blurb); This.Add (This.Author); This.Add (This.Dismiss); -- cgit