Browse Source

Correct identifier case

Source commit: 592827da5846971a6eaf4d1b4ac43d9d46624bd3
Martin Prikryl 5 years ago
parent
commit
405a549d1f
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;