MruLists.pp: fix call to CompareFileNames (function signature has changed).

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@3252 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
lazarus-bart
2014-06-29 12:24:23 +00:00
parent af315f4311
commit e185b2ed51

View File

@ -253,7 +253,7 @@ begin
Result := False; Result := False;
for i := 0 to FList.Count - 1 do for i := 0 to FList.Count - 1 do
begin begin
if CompareFileNames(FList.Strings[i], Value, True) = 0 then if CompareFileNames(FList.Strings[i], Value) = 0 then
begin begin
Result := True; Result := True;
Index := i; Index := i;