* Resolve hints

This commit is contained in:
Michaël Van Canneyt 2023-10-15 17:49:50 +02:00
parent f1a55daf76
commit c6fb0e4bbf

View File

@ -2639,7 +2639,7 @@ end;
function TFileInputWidget.GetFileType(aIndex : Integer): String;
begin
Result:=InputElement.files.Files[aIndex]._Type;
Result:=InputElement.files.Files[aIndex].Type_;
end;
function TFileInputWidget.GetFileCount: Integer;
@ -2661,7 +2661,7 @@ begin
F:=InputElement.files.Files[aIndex];
Result.Name:=F.name;
Result.Size:=F.size;
Result.FileType:=F._type;
Result.FileType:=F.type_;
Result.TimeStamp:= JSDateToDateTime(F.lastModifiedDate);
end;