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

Apply suggestions from code review

Small adjustments, as suggested by linus.

Co-authored-by: Linus Groh <mail@linusgroh.de>
This commit is contained in:
Elie Donadio 2021-03-15 09:07:00 +01:00 committed by Andreas Kling
parent f4f12982ff
commit 3a5a9a683f
2 changed files with 5 additions and 5 deletions

View file

@ -72,7 +72,7 @@ private:
void for_each_handler(const String& key, HashMap<String, String>& user_preferences, Function<bool(const Handler&)> f);
void for_each_handler_for_path(const String&, Function<bool(const Handler&)> f);
bool open_file_url(const URL&);
bool open_with_user_preferences(const HashMap<String, String>& user_preferences, const String key, const AK::Vector<String> arguments, const String default_program = {});
bool open_with_user_preferences(const HashMap<String, String>& user_preferences, const String& key, const Vector<String>& arguments, const String& default_program = {});
bool open_with_handler_name(const URL&, const String& handler_name);
};
}