diff options
author | Jedidiah Barber <contact@jedbarber.id.au> | 2025-01-14 21:16:06 +1300 |
---|---|---|
committer | Jedidiah Barber <contact@jedbarber.id.au> | 2025-01-14 21:16:06 +1300 |
commit | bb03d6089f86108279830da00e30837f32f6bb41 (patch) | |
tree | 5aa8cef13b79b0ba97aa7f4ad0316b6d0deee983 /src/windows-find.ads | |
parent | 1e676b49bee920605529fd5e8f18c14fdfc900e2 (diff) |
Missed a few Input -> Text_Input issues
Diffstat (limited to 'src/windows-find.ads')
-rw-r--r-- | src/windows-find.ads | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/windows-find.ads b/src/windows-find.ads index d920398..9f78048 100644 --- a/src/windows-find.ads +++ b/src/windows-find.ads @@ -2,7 +2,7 @@ private with - FLTK.Widgets.Inputs, + FLTK.Widgets.Inputs.Text, FLTK.Widgets.Buttons.Enter, FLTK.Widgets.Buttons.Light.Check; @@ -41,7 +41,7 @@ private type Find_Window is new Window with record - Find_What : FLTK.Widgets.Inputs.Input; + Find_What : FLTK.Widgets.Inputs.Text.Text_Input; Match_Case : FLTK.Widgets.Buttons.Light.Check.Check_Button; Cancel : FLTK.Widgets.Buttons.Button; Start : FLTK.Widgets.Buttons.Enter.Enter_Button; |