summaryrefslogtreecommitdiff
path: root/src/windows-replace.adb
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2016-11-11 14:45:30 +1100
committerJed Barber <jjbarber@y7mail.com>2016-11-11 14:45:30 +1100
commit7aa86670f5d76284ae193ed1e1ed936b20a5c5fb (patch)
tree55e212b64ae466ebabf2e7c9daf403194adb6091 /src/windows-replace.adb
parentbf5b67dee0d61996c3937dd8b255d5fcf2198973 (diff)
Removed some superfluous with clauses
Diffstat (limited to 'src/windows-replace.adb')
-rw-r--r--src/windows-replace.adb5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/windows-replace.adb b/src/windows-replace.adb
index f158f7b..83e328d 100644
--- a/src/windows-replace.adb
+++ b/src/windows-replace.adb
@@ -1,9 +1,7 @@
-with FLTK.Widgets;
with FLTK.Widgets.Groups.Windows.Double;
with FLTK.Widgets.Inputs;
-with FLTK.Widgets.Buttons;
with FLTK.Widgets.Buttons.Enter;
with FLTK.Widgets.Buttons.Light.Check;
@@ -11,7 +9,6 @@ with FLTK.Widgets.Buttons.Light.Check;
package body Windows.Replace is
- package W renames FLTK.Widgets;
package WD renames FLTK.Widgets.Groups.Windows.Double;
package IP renames FLTK.Widgets.Inputs;
package BU renames FLTK.Widgets.Buttons;
@@ -22,7 +19,7 @@ package body Windows.Replace is
procedure Replace_M
- (Item : in out W.Widget'Class)
+ (Item : in out FLTK.Widgets.Widget'Class)
is
use type BU.State;
type Replace_Window_Access is access all Replace_Window;