summaryrefslogtreecommitdiff
path: root/Applications/SoundPlayer/main.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-09-21 18:13:17 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-09-21 18:13:17 +0200
commitf4b51a63ec085db62ea2c122ee6ba93eeef62594 (patch)
tree8e71f811b463556b1216e8aed71f20092db3d81c /Applications/SoundPlayer/main.cpp
parent9e00651e1440263ff78aa29474229e5c18f06053 (diff)
downloadserenity-f4b51a63ec085db62ea2c122ee6ba93eeef62594.zip
LibCore: Remove CTimer::create() overloads in favor of construct()
Diffstat (limited to 'Applications/SoundPlayer/main.cpp')
-rw-r--r--Applications/SoundPlayer/main.cpp2
1 files changed, 1 insertions, 1 deletions
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;