1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 09:27:35 +00:00

Assistant: Port tooltips to String

This commit is contained in:
Karol Kosek 2023-08-23 20:26:57 +02:00 committed by Andreas Kling
parent 3944c39b3a
commit 4836d33ae4
3 changed files with 10 additions and 10 deletions

View file

@ -85,7 +85,7 @@ void AppProvider::query(DeprecatedString const& query, Function<void(Vector<Nonn
continue;
auto icon = GUI::FileIconProvider::icon_for_executable(app_file->executable());
results.append(make_ref_counted<AppResult>(icon.bitmap_for_size(16), app_file->name(), DeprecatedString::empty(), app_file, arguments, match_result.score));
results.append(make_ref_counted<AppResult>(icon.bitmap_for_size(16), app_file->name(), String(), app_file, arguments, match_result.score));
};
on_complete(move(results));