summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGUI/InputBox.h
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2021-02-20 12:03:28 +0100
committerAndreas Kling <kling@serenityos.org>2021-02-20 12:19:46 +0100
commit3583b62ad36d8ece413eea5514493bf16fb954f7 (patch)
treec91686af537213dc64813d9b8935f22d64ba1598 /Userland/Libraries/LibGUI/InputBox.h
parent3b9f110161bc78d8534a29e3f14030e1f5a15574 (diff)
downloadserenity-3583b62ad36d8ece413eea5514493bf16fb954f7.zip
LibGUI: Swap order of InputBox value and parent window args
This is now consistent with the other dialog classes.
Diffstat (limited to 'Userland/Libraries/LibGUI/InputBox.h')
-rw-r--r--Userland/Libraries/LibGUI/InputBox.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibGUI/InputBox.h b/Userland/Libraries/LibGUI/InputBox.h
index 1eb7c490d6..c2fa24f282 100644
--- a/Userland/Libraries/LibGUI/InputBox.h
+++ b/Userland/Libraries/LibGUI/InputBox.h
@@ -35,7 +35,7 @@ class InputBox : public Dialog {
public:
virtual ~InputBox() override;
- static int show(String& text_value, Window* parent_window, const StringView& prompt, const StringView& title);
+ static int show(Window* parent_window, String& text_value, const StringView& prompt, const StringView& title);
private:
explicit InputBox(Window* parent_window, const StringView& prompt, const StringView& title);