TCustomTreeView: use Utf8CompareStr for default sorting instead of AnsiCompareStr.

Issue #0024740.

git-svn-id: trunk@42123 -
This commit is contained in:
bart 2013-07-17 21:22:58 +00:00
parent bc30518a35
commit 44ab1aef23

View File

@ -3226,7 +3226,7 @@ begin
Result:=0;
OnCompare(Node1.TreeView,Node1, Node2, Result);
end else
Result := AnsiCompareStr(Node1.Text,Node2.Text);
Result := Utf8CompareStr(Node1.Text,Node2.Text);
end;
procedure TCustomTreeView.SetAutoExpand(Value: Boolean);