summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGUI/ProcessChooser.h
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2023-02-25 16:40:37 +0100
committerLinus Groh <mail@linusgroh.de>2023-02-25 20:51:49 +0100
commit09d40bfbb24588b5659f17e2701b5c367a447110 (patch)
tree8a5612e3251e504ab41d0ff5c7a1a7f70c2593b0 /Userland/Libraries/LibGUI/ProcessChooser.h
parent85414d9338f5b4a25f46f519c07af161c48af45d (diff)
downloadserenity-09d40bfbb24588b5659f17e2701b5c367a447110.zip
Everywhere: Use _{short_,}string to create Strings from literals
Diffstat (limited to 'Userland/Libraries/LibGUI/ProcessChooser.h')
-rw-r--r--Userland/Libraries/LibGUI/ProcessChooser.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibGUI/ProcessChooser.h b/Userland/Libraries/LibGUI/ProcessChooser.h
index 64e67a7292..725b4b5f8a 100644
--- a/Userland/Libraries/LibGUI/ProcessChooser.h
+++ b/Userland/Libraries/LibGUI/ProcessChooser.h
@@ -23,7 +23,7 @@ public:
pid_t pid() const { return m_pid; }
private:
- ProcessChooser(StringView window_title = "Process Chooser"sv, String button_label = String::from_utf8_short_string("Select"sv), Gfx::Bitmap const* window_icon = nullptr, GUI::Window* parent_window = nullptr);
+ ProcessChooser(StringView window_title = "Process Chooser"sv, String button_label = "Select"_short_string, Gfx::Bitmap const* window_icon = nullptr, GUI::Window* parent_window = nullptr);
void set_pid_from_index_and_close(ModelIndex const&);