summaryrefslogtreecommitdiff
path: root/Userland/Demos
diff options
context:
space:
mode:
authorthankyouverycool <66646555+thankyouverycool@users.noreply.github.com>2023-04-29 10:41:48 -0400
committerAndreas Kling <kling@serenityos.org>2023-04-30 05:48:14 +0200
commit91bafc2653bcbcc0b8d05b5589324375b92f91b5 (patch)
tree3ebc611c104c9c1c47c4b85b594e36f91c66c026 /Userland/Demos
parent3d53dc82283e7eccf7a27918dbbcd391dc4988f7 (diff)
downloadserenity-91bafc2653bcbcc0b8d05b5589324375b92f91b5.zip
LibGUI+Userland: Port Labels to String
Diffstat (limited to 'Userland/Demos')
-rw-r--r--Userland/Demos/WidgetGallery/GalleryWidget.cpp2
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");