1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-24 05:05:07 +00:00

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
13 changed files with 14 additions and 24 deletions

View file

@ -101,7 +101,7 @@ Field::Field(GLabel& flag_label, GLabel& time_label, GButton& face_button, GWidg
, m_on_size_changed(move(on_size_changed))
{
srand(time(nullptr));
m_timer = CTimer::create();
m_timer = CTimer::construct();
m_timer->on_timeout = [this] {
++m_time_elapsed;
m_time_label.set_text(String::format("%u.%u", m_time_elapsed / 10, m_time_elapsed % 10));