MG: fixed unitname update bug

git-svn-id: trunk@3586 -
This commit is contained in:
lazarus 2002-10-30 18:24:45 +00:00
parent 416fad469e
commit 3ae29b7c22

View File

@ -1588,6 +1588,11 @@ end;
procedure TCodeToolManager.AfterApplyingChanges;
begin
// clear all codetrees of changed buffers
if FCurCodeTool<>nil then
FCurCodeTool.Clear;
// user callback
if Assigned(FOnAfterApplyChanges) then
FOnAfterApplyChanges(Self);
end;