mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-23 06:19:47 +02:00
LazUtils: Call inherited in TListFileSearcher.DoFileFound and TListDirectoriesSearcher.DoDirectoryFound. Issue #38091, patch from devEric69.
git-svn-id: trunk@64355 -
This commit is contained in:
parent
f655e86d24
commit
7ba0f775e7
@ -647,6 +647,7 @@ end;
|
||||
procedure TListFileSearcher.DoFileFound;
|
||||
begin
|
||||
FList.Add(FileName);
|
||||
inherited;
|
||||
end;
|
||||
|
||||
constructor TListFileSearcher.Create(AList: TStrings);
|
||||
@ -691,6 +692,7 @@ end;
|
||||
procedure TListDirectoriesSearcher.DoDirectoryFound;
|
||||
begin
|
||||
FDirectoriesList.Add(FileName);
|
||||
inherited;
|
||||
end;
|
||||
|
||||
function FindAllDirectories(const SearchPath : string;
|
||||
|
Loading…
Reference in New Issue
Block a user