diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-09-21 18:13:17 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-09-21 18:13:17 +0200 |
commit | f4b51a63ec085db62ea2c122ee6ba93eeef62594 (patch) | |
tree | 8e71f811b463556b1216e8aed71f20092db3d81c /Applications/SoundPlayer/main.cpp | |
parent | 9e00651e1440263ff78aa29474229e5c18f06053 (diff) | |
download | serenity-f4b51a63ec085db62ea2c122ee6ba93eeef62594.zip |
LibCore: Remove CTimer::create() overloads in favor of construct()
Diffstat (limited to 'Applications/SoundPlayer/main.cpp')
-rw-r--r-- | Applications/SoundPlayer/main.cpp | 2 |
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; |