Userland: Replace remaining Core::Timer::construct()s with try_create()

This commit is contained in:
Sam Atkins 2023-01-11 17:27:28 +00:00 committed by Andreas Kling
commit 652f87821b
Notes: sideshowbarker 2024-07-17 05:58:46 +09:00
4 changed files with 5 additions and 5 deletions

View file

@ -64,8 +64,8 @@ public:
private:
InfinitelyScrollableTableView()
: m_horizontal_scroll_end_timer(Core::Timer::construct())
, m_vertical_scroll_end_timer(Core::Timer::construct())
: m_horizontal_scroll_end_timer(Core::Timer::try_create().release_value_but_fixme_should_propagate_errors())
, m_vertical_scroll_end_timer(Core::Timer::try_create().release_value_but_fixme_should_propagate_errors())
{
}
virtual void did_scroll() override;