diff options
Diffstat (limited to 'Userland/DevTools/HackStudio/Project.cpp')
-rw-r--r-- | Userland/DevTools/HackStudio/Project.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/DevTools/HackStudio/Project.cpp b/Userland/DevTools/HackStudio/Project.cpp index f78472771d..f15a33fc6c 100644 --- a/Userland/DevTools/HackStudio/Project.cpp +++ b/Userland/DevTools/HackStudio/Project.cpp @@ -6,7 +6,7 @@ #include "Project.h" #include "HackStudio.h" -#include <LibCore/File.h> +#include <LibCore/DeprecatedFile.h> namespace HackStudio { @@ -18,7 +18,7 @@ Project::Project(DeprecatedString const& root_path) OwnPtr<Project> Project::open_with_root_path(DeprecatedString const& root_path) { - if (!Core::File::is_directory(root_path)) + if (!Core::DeprecatedFile::is_directory(root_path)) return {}; return adopt_own(*new Project(root_path)); } |