LCL, fixed bug that prevent right sorting in hashed list (fix translations and probably other things)

git-svn-id: trunk@13955 -
This commit is contained in:
jesus 2008-02-02 23:43:36 +00:00
parent 3324817212
commit 2380f77d0d

View File

@ -86,8 +86,9 @@ end;
function TStringHashList.Add(const S: String; ItemData: Pointer): Integer;
var
Item: PStringHashItem;
Val, First, Last, I: Integer;
Larger: ByteBool;
First, Last, I: Integer;
Val: Cardinal;
Larger: boolean;
begin
New(Item);
Val:= HashOf(S);