mirror of https://gitlab.com/basile.b/dexed.git
fix, project groups, dexed projects wrongly seen as makefile projects.
This commit is contained in:
parent
8e2adaeb88
commit
4eabd7e65b
|
@ -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
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue