I have a custom sorted TStringList...
Items.CustomSort(@CompareWords);
... with this comparison function:
function CompareWords(List: TStringList; Index1, Index2: Integer): Integer;
begin
Result := StrIComp(PWideChar(List[Index1]), PWideChar(List[Index2]));
end;
But after noticing some problems with my code, which expects the list to be sorted in the order StrIComp induces, I created this small check...
for i := 1 to Items.Count - 1 do
begin
Assert(StrIComp(PWideChar(Items[i-1]), PWideChar(Items[i])) <= 0);
end;
... and it fails.
Why isn't the list sorted properly?

@before the function when you callCustomSort. It can mask errors in the declaration of your comparison function. (In this particular case, you're OK, though.) Also, please type-cast toPChar, notPWideChar. Just because they're the same type for you doesn't mean they'll always be the same type.TStringListholds generic strings, so type-cast to genericPChar. (Even if you never use a different Delphi version, others who come here to copy and paste your code might, so it's better not to use version-sensitive code when you don't have to.) – Rob Kennedy Oct 3 at 17:33