mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-01 05:39:11 +00:00
Everywhere: Run clang-format
This commit is contained in:
parent
0376c127f6
commit
086969277e
Notes:
sideshowbarker
2024-07-17 16:21:09 +09:00
Author: https://github.com/IdanHo
Commit: 086969277e
Pull-request: https://github.com/SerenityOS/serenity/pull/12321
Reviewed-by: https://github.com/BertalanD
Reviewed-by: https://github.com/bgianfo ✅
1665 changed files with 8479 additions and 8479 deletions
|
@ -19,21 +19,21 @@ class Project {
|
|||
AK_MAKE_NONMOVABLE(Project);
|
||||
|
||||
public:
|
||||
static OwnPtr<Project> open_with_root_path(const String& root_path);
|
||||
static OwnPtr<Project> open_with_root_path(String const& root_path);
|
||||
|
||||
GUI::FileSystemModel& model() { return *m_model; }
|
||||
const GUI::FileSystemModel& model() const { return *m_model; }
|
||||
String name() const { return LexicalPath::basename(m_root_path); }
|
||||
String root_path() const { return m_root_path; }
|
||||
|
||||
NonnullRefPtr<ProjectFile> create_file(const String& path) const;
|
||||
NonnullRefPtr<ProjectFile> create_file(String const& path) const;
|
||||
|
||||
void for_each_text_file(Function<void(const ProjectFile&)>) const;
|
||||
void for_each_text_file(Function<void(ProjectFile const&)>) const;
|
||||
String to_absolute_path(String const&) const;
|
||||
bool project_is_serenity() const;
|
||||
|
||||
private:
|
||||
explicit Project(const String& root_path);
|
||||
explicit Project(String const& root_path);
|
||||
|
||||
RefPtr<GUI::FileSystemModel> m_model;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue