summaryrefslogtreecommitdiff
path: root/DevTools/FormCompiler/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'DevTools/FormCompiler/main.cpp')
-rw-r--r--DevTools/FormCompiler/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/DevTools/FormCompiler/main.cpp b/DevTools/FormCompiler/main.cpp
index 12078c87b9..22c793bce6 100644
--- a/DevTools/FormCompiler/main.cpp
+++ b/DevTools/FormCompiler/main.cpp
@@ -39,8 +39,8 @@ int main(int argc, char** argv)
return 0;
}
- auto file = CFile::construct(argv[1]);
- if (!file->open(CIODevice::ReadOnly)) {
+ auto file = Core::File::construct(argv[1]);
+ if (!file->open(Core::IODevice::ReadOnly)) {
fprintf(stderr, "Error: Cannot open %s: %s\n", argv[1], file->error_string());
return 1;
}