diff options
author | thankyouverycool <66646555+thankyouverycool@users.noreply.github.com> | 2023-04-29 10:41:48 -0400 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2023-04-30 05:48:14 +0200 |
commit | 91bafc2653bcbcc0b8d05b5589324375b92f91b5 (patch) | |
tree | 3ebc611c104c9c1c47c4b85b594e36f91c66c026 /Userland/Demos | |
parent | 3d53dc82283e7eccf7a27918dbbcd391dc4988f7 (diff) | |
download | serenity-91bafc2653bcbcc0b8d05b5589324375b92f91b5.zip |
LibGUI+Userland: Port Labels to String
Diffstat (limited to 'Userland/Demos')
-rw-r--r-- | Userland/Demos/WidgetGallery/GalleryWidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Demos/WidgetGallery/GalleryWidget.cpp b/Userland/Demos/WidgetGallery/GalleryWidget.cpp index 4107b9db52..1555f0577e 100644 --- a/Userland/Demos/WidgetGallery/GalleryWidget.cpp +++ b/Userland/Demos/WidgetGallery/GalleryWidget.cpp @@ -63,7 +63,7 @@ GalleryWidget::GalleryWidget() }; m_frame_shape_combobox->on_return_pressed = [&]() { - m_enabled_label->set_text(m_frame_shape_combobox->text()); + m_enabled_label->set_text(String::from_deprecated_string(m_frame_shape_combobox->text()).release_value_but_fixme_should_propagate_errors()); }; m_thickness_spinbox = basics_tab->find_descendant_of_type_named<GUI::SpinBox>("thickness_spinbox"); |