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/GCheckBox.cpp | |
parent | f9ba7adae2efaa2e2bdc47a13ff22aed401261b3 (diff) | |
download | serenity-1024dfa81ab391765eb8838cfc7e58b03e2cb5c6.zip |
StringViewize a bunch of things -- mostly LibGUI
Diffstat (limited to 'LibGUI/GCheckBox.cpp')
-rw-r--r-- | LibGUI/GCheckBox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LibGUI/GCheckBox.cpp b/LibGUI/GCheckBox.cpp index b40c22624e..7be710fbb3 100644 --- a/LibGUI/GCheckBox.cpp +++ b/LibGUI/GCheckBox.cpp @@ -27,7 +27,7 @@ GCheckBox::GCheckBox(GWidget* parent) { } -GCheckBox::GCheckBox(const String& text, GWidget* parent) +GCheckBox::GCheckBox(const StringView& text, GWidget* parent) : GAbstractButton(text, parent) { } |