implemented search, fixed double loading breakpoints

git-svn-id: trunk@3421 -
This commit is contained in:
mattias 2002-10-01 15:45:51 +00:00
parent 428e9ffa91
commit bd1b61d5e1

View File

@ -528,7 +528,8 @@ begin
repeat
// check if special file
if (FileInfo.Name='.') or (FileInfo.Name='..') then continue;
if CompareFileExt(Directory,Ext,false)=0 then begin
// check extension
if CompareFileExt(FileInfo.Name,Ext,false)=0 then begin
Result:=AppendPathDelim(Directory)+FileInfo.Name;
break;
end;