summaryrefslogtreecommitdiff
path: root/Userland/Services/Taskbar/ShutdownDialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Services/Taskbar/ShutdownDialog.cpp')
-rw-r--r--Userland/Services/Taskbar/ShutdownDialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Services/Taskbar/ShutdownDialog.cpp b/Userland/Services/Taskbar/ShutdownDialog.cpp
index 7fbdf5ede3..9dd87d51ca 100644
--- a/Userland/Services/Taskbar/ShutdownDialog.cpp
+++ b/Userland/Services/Taskbar/ShutdownDialog.cpp
@@ -78,7 +78,7 @@ ShutdownDialog::ShutdownDialog()
auto action = options[i];
auto& radio = right_container.add<GUI::RadioButton>();
radio.set_enabled(action.enabled);
- radio.set_text(action.title);
+ radio.set_text_deprecated(action.title);
radio.on_checked = [this, i](auto) {
m_selected_option = i;