|
@@ -155,7 +155,7 @@ type
|
|
private
|
|
private
|
|
fnextfieldname: TIDString;
|
|
fnextfieldname: TIDString;
|
|
function getcuroffset: asizeint;
|
|
function getcuroffset: asizeint;
|
|
- procedure setnextfieldname(AValue: TIDString);
|
|
|
|
|
|
+ procedure setnextfieldname(const AValue: TIDString);
|
|
protected
|
|
protected
|
|
{ type of the aggregate }
|
|
{ type of the aggregate }
|
|
fdef: tdef;
|
|
fdef: tdef;
|
|
@@ -217,7 +217,7 @@ type
|
|
private
|
|
private
|
|
function getcurragginfo: taggregateinformation;
|
|
function getcurragginfo: taggregateinformation;
|
|
procedure set_next_field(AValue: tfieldvarsym);
|
|
procedure set_next_field(AValue: tfieldvarsym);
|
|
- procedure set_next_field_name(AValue: TIDString);
|
|
|
|
|
|
+ procedure set_next_field_name(const AValue: TIDString);
|
|
protected
|
|
protected
|
|
{ temporary list in which all data is collected }
|
|
{ temporary list in which all data is collected }
|
|
fasmlist: tasmlist;
|
|
fasmlist: tasmlist;
|
|
@@ -538,7 +538,7 @@ implementation
|
|
end;
|
|
end;
|
|
|
|
|
|
|
|
|
|
- procedure taggregateinformation.setnextfieldname(AValue: TIDString);
|
|
|
|
|
|
+ procedure taggregateinformation.setnextfieldname(const AValue: TIDString);
|
|
begin
|
|
begin
|
|
if (fnextfieldname<>'') or
|
|
if (fnextfieldname<>'') or
|
|
not anonrecord then
|
|
not anonrecord then
|
|
@@ -862,7 +862,7 @@ implementation
|
|
end;
|
|
end;
|
|
|
|
|
|
|
|
|
|
- procedure ttai_typedconstbuilder.set_next_field_name(AValue: TIDString);
|
|
|
|
|
|
+ procedure ttai_typedconstbuilder.set_next_field_name(const AValue: TIDString);
|
|
var
|
|
var
|
|
info: taggregateinformation;
|
|
info: taggregateinformation;
|
|
begin
|
|
begin
|