Browse Source

Correct identifier case

(cherry picked from commit 405a549d1fc1de7ec97008ca5dcd30592572bb92)

Source commit: 2d41c56b103f76159172378b565a67fa8a6e4eb3
Martin Prikryl 5 years ago
parent
commit
600e99cffe
1 changed files with 1 additions and 1 deletions
  1. 1 1
      source/packages/filemng/DirView.pas

+ 1 - 1
source/packages/filemng/DirView.pas

@@ -1829,7 +1829,7 @@ begin
               if (FileInfo.iIcon <= 0) or (FileInfo.iIcon > SmallImages.Count) then
               begin
                 {Invalid icon returned: retry with access file attribute flag:}
-                SHGetFileInfo(PChar(fPath + '\' + FileName), FILE_ATTRIBUTE_DIRECTORY,
+                SHGetFileInfo(PChar(FPath + '\' + FileName), FILE_ATTRIBUTE_DIRECTORY,
                   FileInfo, SizeOf(FileInfo),
                   SHGFI_TYPENAME or SHGFI_SYSICONINDEX or SHGFI_USEFILEATTRIBUTES);
               end;