ide: Support for .epj files in econ format. econ is a superset of json.
authorJerome St-Louis <jerome@ecere.com>
Tue, 12 Jul 2016 19:40:18 +0000 (15:40 -0400)
committerJerome St-Louis <jerome@ecere.com>
Thu, 28 Jul 2016 22:23:25 +0000 (18:23 -0400)
- .epj's are still being written as json for now.

ide/src/project/Project.ec

index 8f5df27..018b807 100644 (file)
@@ -4651,7 +4651,7 @@ Project LoadProject(const char * filePath, const char * activeConfigName)
       project = LegacyBinaryLoadProject(f, filePath);
       if(!project)
       {
-         JSONParser parser { f = f };
+         ECONParser parser { f = f };
          /*JSONResult result = */parser.GetObject(class(Project), &project);
          if(project)
          {