LazUtils: Fix FindAllDirectories to find subdirs, too.

git-svn-id: trunk@32954 -
This commit is contained in:
juha 2011-10-18 11:26:23 +00:00
parent f3c0b96ec3
commit 3604a5e097

View File

@ -1334,7 +1334,7 @@ begin
Result := TStringList.Create;
Searcher := TListDirectoriesSearcher.Create(Result);
try
Searcher.Search(SearchPath, AllFilesMask, False);
Searcher.Search(SearchPath, AllFilesMask);
finally
Searcher.Free;
end;