diff options
author | Robin Burchell <robin+git@viroteck.net> | 2019-06-02 14:58:02 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-06-03 20:27:05 +0200 |
commit | 1024dfa81ab391765eb8838cfc7e58b03e2cb5c6 (patch) | |
tree | 764f63dfe97dfd6dfafe70385731dd43734f38b0 /LibGUI/GInputBox.h | |
parent | f9ba7adae2efaa2e2bdc47a13ff22aed401261b3 (diff) | |
download | serenity-1024dfa81ab391765eb8838cfc7e58b03e2cb5c6.zip |
StringViewize a bunch of things -- mostly LibGUI
Diffstat (limited to 'LibGUI/GInputBox.h')
-rw-r--r-- | LibGUI/GInputBox.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LibGUI/GInputBox.h b/LibGUI/GInputBox.h index 94de894040..76672b9a80 100644 --- a/LibGUI/GInputBox.h +++ b/LibGUI/GInputBox.h @@ -7,7 +7,7 @@ class GTextEditor; class GInputBox : public GDialog { public: - explicit GInputBox(const String& prompt, const String& title, CObject* parent = nullptr); + explicit GInputBox(const StringView& prompt, const StringView& title, CObject* parent = nullptr); virtual ~GInputBox() override; String text_value() const { return m_text_value; } |