mirror of https://gitlab.com/basile.b/dexed.git
fix #333 - Case where symstring `<CPP>` is empty but should not
This commit is contained in:
parent
1badb23169
commit
3944a2e0f2
|
@ -3801,6 +3801,8 @@ begin
|
|||
exit;
|
||||
fProjectGroup.closeGroup;
|
||||
fProjectGroup.openGroup(TMenuItem(Sender).Hint);
|
||||
if (fProject = nil) and (fProjectGroup.getProjectIndex < fProjectGroup.projectCount) then
|
||||
fProjectGroup.getProject(fProjectGroup.getProjectIndex).activate();
|
||||
end;
|
||||
|
||||
procedure TCEMainForm.actProjCloseExecute(Sender: TObject);
|
||||
|
@ -3970,6 +3972,8 @@ begin
|
|||
finally
|
||||
free;
|
||||
end;
|
||||
if (fProject = nil) and (fProjectGroup.getProjectIndex < fProjectGroup.projectCount) then
|
||||
fProjectGroup.getProject(fProjectGroup.getProjectIndex).activate();
|
||||
end;
|
||||
|
||||
procedure TCEMainForm.actProjSaveGroupAsExecute(Sender: TObject);
|
||||
|
|
|
@ -103,10 +103,10 @@ end;
|
|||
|
||||
procedure TCESymbolExpander.projClosing(project: ICECommonProject);
|
||||
begin
|
||||
fProjInterface := nil;
|
||||
if fProj <> project.getProject then
|
||||
exit;
|
||||
fProj := nil;
|
||||
if fProjInterface = project then
|
||||
fProjInterface := nil;
|
||||
if fProj = project.getProject then
|
||||
fProj := nil;
|
||||
fNeedUpdate := true;
|
||||
end;
|
||||
|
||||
|
@ -178,6 +178,7 @@ var
|
|||
const
|
||||
na = '``';
|
||||
begin
|
||||
//commented : mini explorer doesn't emitt notif,
|
||||
//if not fNeedUpdate then
|
||||
// exit;
|
||||
fNeedUpdate := false;
|
||||
|
|
Loading…
Reference in New Issue