TextEditor: Correct typo in MainWidget.{cpp,h}

This commit is contained in:
huttongrabiel 2022-08-15 11:22:12 -07:00 committed by Linus Groh
commit 279caade73
Notes: sideshowbarker 2024-07-17 08:13:04 +09:00
2 changed files with 7 additions and 7 deletions

View file

@ -56,11 +56,11 @@ private:
virtual void drop_event(GUI::DropEvent&) override;
enum class ShowMessageIfNoResutls {
enum class ShowMessageIfNoResults {
Yes = 1,
No = 0
};
void find_text(GUI::TextEditor::SearchDirection, ShowMessageIfNoResutls);
void find_text(GUI::TextEditor::SearchDirection, ShowMessageIfNoResults);
RefPtr<GUI::TextEditor> m_editor;
String m_path;