From 3f6f3a90c15a156e19e4f98ac29b4e7128135e01 Mon Sep 17 00:00:00 2001 From: Tim Ledbetter Date: Wed, 7 Feb 2024 22:26:41 +0000 Subject: [PATCH] HexEditor: Fix typo in parameter name --- Userland/Applications/HexEditor/FindDialog.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Applications/HexEditor/FindDialog.h b/Userland/Applications/HexEditor/FindDialog.h index 528d4b0754..d569f7b26f 100644 --- a/Userland/Applications/HexEditor/FindDialog.h +++ b/Userland/Applications/HexEditor/FindDialog.h @@ -21,7 +21,7 @@ class FindDialog : public GUI::Dialog { C_OBJECT_ABSTRACT(FindDialog); public: - static ExecResult show(GUI::Window* parent_window, String& out_tex, ByteBuffer& out_buffer, bool& find_all); + static ExecResult show(GUI::Window* parent_window, String& out_text, ByteBuffer& out_buffer, bool& find_all); static ErrorOr> try_create(); private: