fix, project groups, dexed projects wrongly seen as makefile projects.

This commit is contained in:
Basile Burg 2022-06-14 12:41:14 +02:00
parent 8e2adaeb88
commit 4eabd7e65b
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
# v3.9.20-dev
## Bugs fixed
- Project groups, dexed projects (.dprj) wrongly seen as makefile projects.
# v3.9.19 # v3.9.19
## Enhancements ## Enhancements

View File

@ -116,7 +116,7 @@ begin
dubproj.loadFromFile(filename); dubproj.loadFromFile(filename);
result := dubProj as ICommonProject; result := dubProj as ICommonProject;
end end
else if isDubProject then begin else if isCeProject then begin
ceProj := TNativeProject.create(nil); ceProj := TNativeProject.create(nil);
ceProj.loadFromFile(filename); ceProj.loadFromFile(filename);
result := ceProj as ICommonProject; result := ceProj as ICommonProject;