1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 17:38:12 +00:00

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
parent 8ae2771097
commit 279caade73
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;