codetools: fixed clearing include file link

This commit is contained in:
mattias 2024-05-24 11:40:23 +02:00
parent 55d6674aef
commit c7e5d8d441
3 changed files with 13 additions and 8 deletions

View File

@ -1349,7 +1349,8 @@ end;
function TCodeBuffer.GetLastIncludedByFile: string;
begin
Result:=FLastIncludedByFile;
if Result=Filename then Result:='';
if CompareFilenames(Result,Filename)=0 then
Result:='';
end;
procedure TCodeBuffer.SetFilename(Value: string);

View File

@ -5960,7 +5960,7 @@ var ActiveSrcEdit:TSourceEditor;
UnitLineCountWithIncludes: LongInt;
UnitLineCountParsed: LongInt;
Code: TCodeBuffer;
CTTool: TCodeTool;
CTTool, aCodeTool: TCodeTool;
TreeOfSourceCodes: TAVLTree;
Node: TAVLTreeNode;
SubCode: TCodeBuffer;
@ -6020,8 +6020,12 @@ begin
TrimSearchPath(CodeToolBoss.GetIncludePathForDirectory(FileDir),FileDir),
TrimSearchPath(CodeToolBoss.GetCompleteSrcPathForDirectory(FileDir),FileDir)
);
if ClearIncludedByFile then
if ClearIncludedByFile then begin
ActiveUnitInfo.Source.LastIncludedByFile:='';
CodeToolBoss.SourceCache.ClearIncludedByEntry(ActiveUnitInfo.Source.Filename);
CodeToolBoss.Explore(ActiveUnitInfo.Source,aCodeTool,false,true);
SaveIncludeLinks;
end;
if (DlgResult=mrYes) and (ActiveUnitInfo.Source.LastIncludedByFile<>'') then
DoGotoIncludeDirective;
end;

View File

@ -57,10 +57,10 @@ type
PathsGroupBox: TGroupBox;
procedure CodeToolsDefsButtonClick(Sender: TObject);
procedure FormCreate(Sender: TObject);
procedure clearIncludedByClick(Sender: TObject);
procedure ClearIncludedByClick(Sender: TObject);
private
FFilePath: string;
function getIncludedBy: string;
function GetIncludedBy: string;
end;
function ShowUnitInfoDlg(const AnUnitName, AType: string;
@ -130,7 +130,7 @@ begin
Result:=Dlg.ShowModal;
ClearIncludedBy:=(Result in [mrOk,mrYes]) and (IncludedBy<>'')
and (Dlg.getIncludedBy='');
and (Dlg.GetIncludedBy='');
Dlg.Free;
end;
@ -166,12 +166,12 @@ begin
GotoIncludeDirectiveButton.Caption:=lisMenuGotoIncludeDirective;
end;
procedure TUnitInfoDialog.clearIncludedByClick(Sender: TObject);
procedure TUnitInfoDialog.ClearIncludedByClick(Sender: TObject);
begin
ListValues.Items[6].SubItems[0]:='';
end;
function TUnitInfoDialog.getIncludedBy: string;
function TUnitInfoDialog.GetIncludedBy: string;
begin
Result:=ListValues.Items[6].SubItems[0];
end;