mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-02-25 17:15:44 +00:00
Userland: Port remaining calls to Widget::set_tooltip_deprecated()
Replaces `set_tooltip_deprecated(string);` with `set_tooltip(MUST(String::from_deprecated_string(string)));` purely to get rid of the deprecated function in the following commit.
This commit is contained in:
committed by
Andreas Kling
parent
ed3e729d4e
commit
03a54a519a
@@ -66,7 +66,7 @@ ErrorOr<void> KeymapStatusWidget::refresh_menu()
|
||||
void KeymapStatusWidget::set_current_keymap(DeprecatedString const& keymap)
|
||||
{
|
||||
m_current_keymap = keymap;
|
||||
set_tooltip_deprecated(keymap);
|
||||
set_tooltip(MUST(String::from_deprecated_string(keymap)));
|
||||
update();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user