mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 21:38:27 +02:00
codetools: fixed clearing include file link
This commit is contained in:
parent
55d6674aef
commit
c7e5d8d441
@ -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);
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user