fixed possible future bugs when multiple project will be implemented

This commit is contained in:
Basile Burg 2014-11-11 05:41:27 +01:00
parent 084a476e5f
commit 76c236ce4e
5 changed files with 17 additions and 4 deletions

View File

@ -79,6 +79,8 @@ end;
procedure TCECdbWidget.projClosing(const aProject: TCEProject);
begin
if fProject <> aProject then
exit;
fProject := nil;
end;
@ -89,7 +91,6 @@ end;
procedure TCECdbWidget.projChanged(const aProject: TCEProject);
begin
fProject := aProject;
end;
{$ENDREGION --------------------------------------------------------------------}

View File

@ -148,7 +148,8 @@ end;
procedure TCEEditorWidget.projClosing(const aProject: TCEProject);
begin
if fProj <> aProject then exit;
if fProj <> aProject then
exit;
fProj := nil;
end;
@ -159,6 +160,8 @@ end;
procedure TCEEditorWidget.projChanged(const aProject: TCEProject);
begin
if fProj <> aProject then
exit;
fProj := aProject;
end;

View File

@ -70,13 +70,18 @@ end;
procedure TCEProjectConfigurationWidget.projClosing(const aProject: TCEProject);
begin
if fProj <> aProject then
exit;
Grid.TIObject := nil;
Grid.ItemIndex := -1;
self.selConf.Clear;
fProj := nil;
end;
procedure TCEProjectConfigurationWidget.projChanged(const aProject: TCEProject);
begin
if fProj <> aProject then
exit;
beginUpdateByEvent;
fProj := aProject;
endUpdateByEvent;

View File

@ -129,6 +129,8 @@ end;
procedure TCEProjectInspectWidget.projClosing(const aProject: TCEProject);
begin
if fProject <> aProject then
exit;
fProject := nil;
UpdateByEvent;
end;
@ -141,7 +143,8 @@ end;
procedure TCEProjectInspectWidget.projChanged(const aProject: TCEProject);
begin
fProject := aProject;
if fProject <> aProject then
exit;
UpdateByEvent;
end;
{$ENDREGION}

View File

@ -266,6 +266,8 @@ end;
procedure TCEStaticExplorerWidget.projClosing(const aProject: TCEProject);
begin
if fProj <> aProject then
exit;
fProj := nil;
end;
@ -276,7 +278,6 @@ end;
procedure TCEStaticExplorerWidget.projChanged(const aProject: TCEProject);
begin
fProj := aProject;
end;
{$ENDREGION}