From f4b51a63ec085db62ea2c122ee6ba93eeef62594 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sat, 21 Sep 2019 18:13:17 +0200 Subject: LibCore: Remove CTimer::create() overloads in favor of construct() --- Applications/SoundPlayer/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Applications/SoundPlayer/main.cpp') diff --git a/Applications/SoundPlayer/main.cpp b/Applications/SoundPlayer/main.cpp index f3f77ad6f1..e5a2c95188 100644 --- a/Applications/SoundPlayer/main.cpp +++ b/Applications/SoundPlayer/main.cpp @@ -52,7 +52,7 @@ int main(int argc, char** argv) auto next_sample_buffer = loader.get_more_samples(); - auto timer = CTimer::create(100, [&] { + auto timer = CTimer::construct(100, [&] { if (!next_sample_buffer) { sample_widget->set_buffer(nullptr); return; -- cgit v1.2.3