mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 02:17:34 +00:00
LibThreading: Remove redundant method
This commit is contained in:
parent
17d95bc1db
commit
59619572d6
6 changed files with 6 additions and 13 deletions
|
@ -132,7 +132,7 @@ void FileProvider::query(const String& query, Function<void(NonnullRefPtrVector<
|
|||
if (m_fuzzy_match_work)
|
||||
m_fuzzy_match_work->cancel();
|
||||
|
||||
m_fuzzy_match_work = Threading::BackgroundAction<NonnullRefPtrVector<Result>>::create(
|
||||
m_fuzzy_match_work = Threading::BackgroundAction<NonnullRefPtrVector<Result>>::construct(
|
||||
[this, query](auto& task) {
|
||||
NonnullRefPtrVector<Result> results;
|
||||
|
||||
|
@ -163,7 +163,7 @@ void FileProvider::build_filesystem_cache()
|
|||
m_building_cache = true;
|
||||
m_work_queue.enqueue("/");
|
||||
|
||||
Threading::BackgroundAction<int>::create(
|
||||
Threading::BackgroundAction<int>::construct(
|
||||
[this](auto&) {
|
||||
String slash = "/";
|
||||
auto timer = Core::ElapsedTimer::start_new();
|
||||
|
|
|
@ -30,7 +30,7 @@ bool MonitorWidget::set_wallpaper(String path)
|
|||
if (!is_different_to_current_wallpaper_path(path))
|
||||
return false;
|
||||
|
||||
Threading::BackgroundAction<RefPtr<Gfx::Bitmap>>::create(
|
||||
Threading::BackgroundAction<RefPtr<Gfx::Bitmap>>::construct(
|
||||
[path](auto&) {
|
||||
RefPtr<Gfx::Bitmap> bmp;
|
||||
if (!path.is_empty())
|
||||
|
|
|
@ -113,7 +113,7 @@ private:
|
|||
|
||||
void ThreadStackWidget::refresh()
|
||||
{
|
||||
Threading::BackgroundAction<Vector<Symbolication::Symbol>>::create(
|
||||
Threading::BackgroundAction<Vector<Symbolication::Symbol>>::construct(
|
||||
[pid = m_pid, tid = m_tid](auto&) {
|
||||
return Symbolication::symbolicate_thread(pid, tid, Symbolication::IncludeSourcePosition::No);
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue