|
@@ -363,7 +363,7 @@ begin
|
|
|
inc(ResStr);
|
|
|
while ResStr<Tables[I].TableEnd do
|
|
|
begin
|
|
|
- s:=SetFunction(ResStr^.Name,ResStr^.DefaultValue,ResStr^.HashValue,arg);
|
|
|
+ s:=SetFunction(ResStr^.Name,ResStr^.DefaultValue,Longint(ResStr^.HashValue),arg);
|
|
|
if s<>'' then
|
|
|
ResStr^.CurrentValue:=s;
|
|
|
inc(ResStr);
|
|
@@ -395,7 +395,7 @@ begin
|
|
|
inc(ResStr);
|
|
|
while ResStr<Tables[I].TableEnd do
|
|
|
begin
|
|
|
- s:=SetFunction(ResStr^.Name,ResStr^.DefaultValue,ResStr^.HashValue,arg);
|
|
|
+ s:=SetFunction(ResStr^.Name,ResStr^.DefaultValue,Longint(ResStr^.HashValue),arg);
|
|
|
if s<>'' then
|
|
|
ResStr^.CurrentValue:=s;
|
|
|
inc(ResStr);
|
|
@@ -497,7 +497,7 @@ begin
|
|
|
With Tables[I]^ do
|
|
|
For J:=0 to Count-1 do
|
|
|
With ResRec[J] do
|
|
|
- CurrentValue:=SetFunction(Name,DefaultValue,HashValue,arg);
|
|
|
+ CurrentValue:=SetFunction(Name,DefaultValue,Longint(HashValue),arg);
|
|
|
end;
|
|
|
|
|
|
|