mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 04:09:13 +00:00
Userland: Replace remaining Core::Timer::construct()s with try_create()
This commit is contained in:
parent
e181b1cb82
commit
652f87821b
Notes:
sideshowbarker
2024-07-17 05:58:46 +09:00
Author: https://github.com/AtkinsSJ
Commit: 652f87821b
Pull-request: https://github.com/SerenityOS/serenity/pull/16960
Reviewed-by: https://github.com/alimpfard
4 changed files with 5 additions and 5 deletions
|
@ -16,7 +16,7 @@ REGISTER_WIDGET(GUI, ImageWidget)
|
|||
namespace GUI {
|
||||
|
||||
ImageWidget::ImageWidget(StringView)
|
||||
: m_timer(Core::Timer::construct())
|
||||
: m_timer(Core::Timer::try_create().release_value_but_fixme_should_propagate_errors())
|
||||
|
||||
{
|
||||
set_frame_thickness(0);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue