summaryrefslogtreecommitdiff
path: root/src/windows-replace.ads
diff options
context:
space:
mode:
authorJedidiah Barber <contact@jedbarber.id.au>2025-01-14 21:16:06 +1300
committerJedidiah Barber <contact@jedbarber.id.au>2025-01-14 21:16:06 +1300
commitbb03d6089f86108279830da00e30837f32f6bb41 (patch)
tree5aa8cef13b79b0ba97aa7f4ad0316b6d0deee983 /src/windows-replace.ads
parent1e676b49bee920605529fd5e8f18c14fdfc900e2 (diff)
Missed a few Input -> Text_Input issues
Diffstat (limited to 'src/windows-replace.ads')
-rw-r--r--src/windows-replace.ads4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/windows-replace.ads b/src/windows-replace.ads
index 5b02055..5e020e6 100644
--- a/src/windows-replace.ads
+++ b/src/windows-replace.ads
@@ -2,7 +2,7 @@
private with
- FLTK.Widgets.Inputs,
+ FLTK.Widgets.Inputs.Text,
FLTK.Widgets.Buttons.Enter,
FLTK.Widgets.Buttons.Light.Check;
@@ -32,7 +32,7 @@ private
type Replace_Window is new Window with
record
- Find_What, Replace_With : FLTK.Widgets.Inputs.Input;
+ Find_What, Replace_With : FLTK.Widgets.Inputs.Text.Text_Input;
Match_Case, Replace_All : FLTK.Widgets.Buttons.Light.Check.Check_Button;
Cancel : FLTK.Widgets.Buttons.Button;
Start : FLTK.Widgets.Buttons.Enter.Enter_Button;