mirror of https://gitlab.com/basile.b/dexed.git
parent
fedc07005e
commit
f389b08008
|
|
@ -210,14 +210,12 @@ end;
|
||||||
|
|
||||||
procedure TCEMRUProjectList.projClosing(aProject: ICECommonProject);
|
procedure TCEMRUProjectList.projClosing(aProject: ICECommonProject);
|
||||||
var
|
var
|
||||||
natProj: TCENativeProject;
|
fname: string;
|
||||||
begin
|
begin
|
||||||
if aProject.getFormat = pfNative then
|
if aProject = nil then exit;
|
||||||
begin
|
//
|
||||||
natProj := TCENativeProject(aProject.getProject);
|
fname := aProject.getFilename;
|
||||||
if FileExists(natProj.fileName) then
|
if FileExists(fname) then Insert(0, fname);
|
||||||
Insert(0, natProj.fileName);
|
|
||||||
end;
|
|
||||||
end;
|
end;
|
||||||
|
|
||||||
initialization
|
initialization
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue