mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 16:17:45 +00:00
Userland: Replace remaining Core::Timer::construct()s with try_create()
This commit is contained in:
parent
e181b1cb82
commit
652f87821b
4 changed files with 5 additions and 5 deletions
|
@ -24,7 +24,7 @@
|
||||||
namespace ImageViewer {
|
namespace ImageViewer {
|
||||||
|
|
||||||
ViewWidget::ViewWidget()
|
ViewWidget::ViewWidget()
|
||||||
: m_timer(Core::Timer::construct())
|
: m_timer(Core::Timer::try_create().release_value_but_fixme_should_propagate_errors())
|
||||||
{
|
{
|
||||||
set_fill_with_background_color(false);
|
set_fill_with_background_color(false);
|
||||||
}
|
}
|
||||||
|
|
|
@ -64,8 +64,8 @@ public:
|
||||||
|
|
||||||
private:
|
private:
|
||||||
InfinitelyScrollableTableView()
|
InfinitelyScrollableTableView()
|
||||||
: m_horizontal_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::construct())
|
, m_vertical_scroll_end_timer(Core::Timer::try_create().release_value_but_fixme_should_propagate_errors())
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
virtual void did_scroll() override;
|
virtual void did_scroll() override;
|
||||||
|
|
|
@ -16,7 +16,7 @@ REGISTER_WIDGET(GUI, ImageWidget)
|
||||||
namespace GUI {
|
namespace GUI {
|
||||||
|
|
||||||
ImageWidget::ImageWidget(StringView)
|
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);
|
set_frame_thickness(0);
|
||||||
|
|
|
@ -16,7 +16,7 @@ NonnullRefPtr<TimerSerenity> TimerSerenity::create()
|
||||||
}
|
}
|
||||||
|
|
||||||
TimerSerenity::TimerSerenity()
|
TimerSerenity::TimerSerenity()
|
||||||
: m_timer(Core::Timer::construct())
|
: m_timer(Core::Timer::try_create().release_value_but_fixme_should_propagate_errors())
|
||||||
{
|
{
|
||||||
m_timer->on_timeout = [this] {
|
m_timer->on_timeout = [this] {
|
||||||
if (on_timeout)
|
if (on_timeout)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue