LibCore: Remove CTimer::create() overloads in favor of construct()

This commit is contained in:
Andreas Kling 2019-09-21 18:13:17 +02:00
parent 9e00651e14
commit f4b51a63ec
Notes: sideshowbarker 2024-07-19 12:01:31 +09:00
13 changed files with 14 additions and 24 deletions

View file

@ -11,7 +11,7 @@ ProcessStacksWidget::ProcessStacksWidget(GWidget* parent)
m_stacks_editor = GTextEditor::construct(GTextEditor::Type::MultiLine, this);
m_stacks_editor->set_readonly(true);
m_timer = CTimer::create(1000, [this] { refresh(); }, this);
m_timer = CTimer::construct(1000, [this] { refresh(); }, this);
}
ProcessStacksWidget::~ProcessStacksWidget()