mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +00:00
LibGUI: Use east const style in InputBox.{cpp,h}
This commit is contained in:
committed by
Andreas Kling
parent
2483a78313
commit
3fce0e58e5
@@ -16,10 +16,10 @@ class InputBox : public Dialog {
|
||||
public:
|
||||
virtual ~InputBox() override;
|
||||
|
||||
static int show(Window* parent_window, String& text_value, const StringView& prompt, const StringView& title, const StringView& placeholder = {});
|
||||
static int show(Window* parent_window, String& text_value, StringView const& prompt, StringView const& title, StringView const& placeholder = {});
|
||||
|
||||
private:
|
||||
explicit InputBox(Window* parent_window, String& text_value, const StringView& prompt, const StringView& title, const StringView& placeholder);
|
||||
explicit InputBox(Window* parent_window, String& text_value, StringView const& prompt, StringView const& title, StringView const& placeholder);
|
||||
|
||||
String text_value() const { return m_text_value; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user