* Small CamelCase correction from Mattias Gaertner

git-svn-id: trunk@35487 -
This commit is contained in:
michael 2017-02-28 13:20:00 +00:00
parent 689fa805eb
commit 220a293aef

View File

@ -1167,7 +1167,7 @@ end;
function TFileResolver.FindSourceFile(const AName: string): TLineReader;
begin
if not FileExists(AName) then
Raise EFileNotFoundError.create(Aname)
Raise EFileNotFoundError.create(AName)
else
try
Result := CreateFileReader(AName)
@ -1183,7 +1183,7 @@ Var
begin
Result:=Nil;
FN:=FindIncludeFileName(ANAme);
FN:=FindIncludeFileName(AName);
If (FN<>'') then
try
Result := TFileLineReader.Create(FN);