From e185b2ed515776a99b6e4791bdf406e36d0e31a2 Mon Sep 17 00:00:00 2001 From: lazarus-bart Date: Sun, 29 Jun 2014 12:24:23 +0000 Subject: [PATCH] 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 --- applications/lazedit/mrulists.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/lazedit/mrulists.pp b/applications/lazedit/mrulists.pp index fb068df59..b8b08ef1a 100644 --- a/applications/lazedit/mrulists.pp +++ b/applications/lazedit/mrulists.pp @@ -253,7 +253,7 @@ begin Result := False; for i := 0 to FList.Count - 1 do begin - if CompareFileNames(FList.Strings[i], Value, True) = 0 then + if CompareFileNames(FList.Strings[i], Value) = 0 then begin Result := True; Index := i;