mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-19 23:19:13 +02:00
IDE: check pkg file conflicts: fixed check in Turkish locale
git-svn-id: branches/fixes_1_6@53392 -
This commit is contained in:
parent
f585271552
commit
933d506f88
@ -169,7 +169,8 @@ var
|
||||
F2: TPGInterPkgFile absolute File2;
|
||||
begin
|
||||
// compare case insensitive to find cross platform duplicates
|
||||
Result:=CompareFilenamesIgnoreCase(F1.ShortFilename,F2.ShortFilename);
|
||||
// Note: do not use CompareFilenamesIgnoreCase, because of Turkish ı, I
|
||||
Result:=CompareText(F1.ShortFilename,F2.ShortFilename);
|
||||
end;
|
||||
|
||||
{ TPGIPAmbiguousFileGroup }
|
||||
|
Loading…
Reference in New Issue
Block a user